From b11b2eb41144a51650f23b4c96f14c6b29a2249d Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Thu, 12 Sep 2024 13:48:28 -0400 Subject: [PATCH 01/14] [Router] Enhanced the Connection Router by Optimizing the Heap Structure - The heap node structure in the connection router is simplified by only maintaining the node index (int32) and node total cost (fp32). - Eliminated dynamic memory allocation for the heap node structure. - The above optimization leads to an algorithmic change for path search; specifically, we need to update node states right before pushing and modify the prune functions. The RCV feature also works when using `--routing_budgets_algorithm yoyo` for the VPR launch. --- .gitignore | 8 +- vpr/src/base/vpr_types.h | 7 + vpr/src/route/connection_router.cpp | 329 ++++++++++++++-------------- vpr/src/route/connection_router.h | 64 ++++-- vpr/src/route/d_ary_heap.h | 82 +++++++ vpr/src/route/d_ary_heap.tpp | 157 +++++++++++++ vpr/src/route/route_common.h | 90 ++++---- 7 files changed, 503 insertions(+), 234 deletions(-) create mode 100644 vpr/src/route/d_ary_heap.h create mode 100644 vpr/src/route/d_ary_heap.tpp diff --git a/.gitignore b/.gitignore index 640bd34b00a..2ea5b42155a 100644 --- a/.gitignore +++ b/.gitignore @@ -153,4 +153,10 @@ tags .idea cmake-build-debug cmake-build-release -/.metadata/ \ No newline at end of file +/.metadata/ + +# +# Clangd +# +.cache +compile_commands.json diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index e169a9e82a5..269085903bf 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1684,6 +1684,13 @@ struct t_rr_node_route_inf { float acc_cost; float path_cost; float backward_path_cost; + float R_upstream; // TODO: Investigate the effect of adding the R_upstream field in + // this struct. It is put in for the fine-grained parallel + // router's benefits. It is increasing the working set, which + // can have some performance implications. This could affect + // the performance of the serial connection router, which will + // make the Hybrid Connection Router less efficient (but that + // needs to be investigated). public: //Accessors short occ() const { return occ_; } diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 4074d6d283f..901759ec3a1 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -36,28 +36,30 @@ std::tuple ConnectionRouter::timing_driven_route_conne conn_params_ = &conn_params; bool retry = false; - t_heap* cheapest; - std::tie(retry, cheapest) = timing_driven_route_connection_common_setup(rt_root, sink_node, cost_params, bounding_box); - - if (cheapest != nullptr) { - rcv_path_manager.update_route_tree_set(cheapest->path_data); - update_cheapest(cheapest); - t_heap out = *cheapest; - heap_.free(cheapest); + retry = timing_driven_route_connection_common_setup(rt_root, sink_node, cost_params, bounding_box); + + if (!std::isinf(rr_node_route_inf_[sink_node].path_cost)) { + rcv_path_manager.update_route_tree_set(rcv_path_data[sink_node]); + t_heap out; // only the `index`, `prev_edge()`, and `path_data` fields of `out` are used after this function returns + out.index = sink_node; + out.set_prev_edge(rr_node_route_inf_[sink_node].prev_edge); + // rcv_path_manager.move(out.path_data, rcv_path_data[sink_node]); + out.path_data = rcv_path_data[sink_node]; heap_.empty_heap(); rcv_path_manager.empty_heap(); return std::make_tuple(true, /*retry=*/false, out); } else { reset_path_costs(); - modified_rr_node_inf_.clear(); + clear_modified_rr_node_info(); heap_.empty_heap(); + rcv_path_manager.empty_heap(); return std::make_tuple(false, retry, t_heap()); } } -/** Return */ +/** Return whether to retry with full bb */ template -std::tuple ConnectionRouter::timing_driven_route_connection_common_setup( +bool ConnectionRouter::timing_driven_route_connection_common_setup( const RouteTreeNode& rt_root, RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -72,18 +74,18 @@ std::tuple ConnectionRouter::timing_driven_route_connection if (heap_.is_empty_heap()) { VTR_LOG("No source in route tree: %s\n", describe_unrouteable_connection(source_node, sink_node, is_flat_).c_str()); - return std::make_tuple(false, nullptr); + return false; } VTR_LOGV_DEBUG(router_debug_, " Routing to %d as normal net (BB: %d,%d,%d x %d,%d,%d)\n", sink_node, bounding_box.layer_min, bounding_box.xmin, bounding_box.ymin, bounding_box.layer_max, bounding_box.xmax, bounding_box.ymax); - t_heap* cheapest = timing_driven_route_connection_from_heap(sink_node, - cost_params, - bounding_box); + timing_driven_route_connection_from_heap(sink_node, + cost_params, + bounding_box); - if (cheapest == nullptr) { + if (std::isinf(rr_node_route_inf_[sink_node].path_cost)) { // No path found within the current bounding box. // // If the bounding box is already max size, just fail @@ -94,15 +96,15 @@ std::tuple ConnectionRouter::timing_driven_route_connection && bounding_box.layer_min == 0 && bounding_box.layer_max == (int)(grid_.get_num_layers() - 1)) { VTR_LOG("%s\n", describe_unrouteable_connection(source_node, sink_node, is_flat_).c_str()); - return std::make_tuple(false, nullptr); + return false; } // Otherwise, leave unrouted and bubble up a signal to retry this net with a full-device bounding box VTR_LOG_WARN("No routing path for connection to sink_rr %d, leaving unrouted to retry later\n", sink_node); - return std::make_tuple(true, nullptr); + return true; } - return std::make_tuple(false, cheapest); + return false; } // Finds a path from the route tree rooted at rt_root to sink_node for a high fanout net. @@ -139,12 +141,11 @@ std::tuple ConnectionRouter::timing_driven_route_conne high_fanout_bb.layer_max, high_fanout_bb.xmax, high_fanout_bb.ymax); bool retry_with_full_bb = false; - t_heap* cheapest; - cheapest = timing_driven_route_connection_from_heap(sink_node, - cost_params, - high_fanout_bb); + timing_driven_route_connection_from_heap(sink_node, + cost_params, + high_fanout_bb); - if (cheapest == nullptr) { + if (std::isinf(rr_node_route_inf_[sink_node].path_cost)) { //Found no path, that may be due to an unlucky choice of existing route tree sub-set, //try again with the full route tree to be sure this is not an artifact of high-fanout routing VTR_LOG_WARN("No routing path found in high-fanout mode for net connection (to sink_rr %d), retrying with full route tree\n", sink_node); @@ -152,15 +153,15 @@ std::tuple ConnectionRouter::timing_driven_route_conne //Reset any previously recorded node costs so timing_driven_route_connection() //starts over from scratch. reset_path_costs(); - modified_rr_node_inf_.clear(); + clear_modified_rr_node_info(); - std::tie(retry_with_full_bb, cheapest) = timing_driven_route_connection_common_setup(rt_root, - sink_node, - cost_params, - net_bounding_box); + retry_with_full_bb = timing_driven_route_connection_common_setup(rt_root, + sink_node, + cost_params, + net_bounding_box); } - if (cheapest == nullptr) { + if (std::isinf(rr_node_route_inf_[sink_node].path_cost)) { VTR_LOG("%s\n", describe_unrouteable_connection(source_node, sink_node, is_flat_).c_str()); heap_.empty_heap(); @@ -168,11 +169,12 @@ std::tuple ConnectionRouter::timing_driven_route_conne return std::make_tuple(false, retry_with_full_bb, t_heap()); } - rcv_path_manager.update_route_tree_set(cheapest->path_data); - update_cheapest(cheapest); - - t_heap out = *cheapest; - heap_.free(cheapest); + rcv_path_manager.update_route_tree_set(rcv_path_data[sink_node]); + t_heap out; + out.index = sink_node; + out.set_prev_edge(rr_node_route_inf_[sink_node].prev_edge); + // rcv_path_manager.move(out.path_data, rcv_path_data[sink_node]); + out.path_data = rcv_path_data[sink_node]; heap_.empty_heap(); rcv_path_manager.empty_heap(); @@ -185,9 +187,9 @@ std::tuple ConnectionRouter::timing_driven_route_conne // // Returns either the last element of the path, or nullptr if no path is found template -t_heap* ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeId sink_node, - const t_conn_cost_params& cost_params, - const t_bb& bounding_box) { +void ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeId sink_node, + const t_conn_cost_params& cost_params, + const t_bb& bounding_box) { VTR_ASSERT_SAFE(heap_.is_valid()); if (heap_.is_empty_heap()) { //No source @@ -220,18 +222,20 @@ t_heap* ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeI target_bb.layer_min = rr_graph_->node_layer(RRNodeId(sink_node)); target_bb.layer_max = rr_graph_->node_layer(RRNodeId(sink_node)); - t_heap* cheapest = nullptr; - while (!heap_.is_empty_heap()) { - // cheapest t_heap in current route tree to be expanded on - cheapest = heap_.get_heap_head(); + // Start measuring time before the barrier + std::chrono::steady_clock::time_point begin_time = std::chrono::steady_clock::now(); + + float new_total_cost; + RRNodeId inode; + while (heap_.try_pop(new_total_cost, inode)) { + // inode with cheapest total cost in current route tree to be expanded on update_router_stats(router_stats_, false, - cheapest->index, + inode, rr_graph_); - RRNodeId inode = cheapest->index; VTR_LOGV_DEBUG(router_debug_, " Popping node %d (cost: %g)\n", - inode, cheapest->cost); + inode, new_total_cost); // Have we found the target? if (inode == sink_node) { @@ -239,35 +243,29 @@ t_heap* ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeI // This is then placed into the traceback so that the correct path is returned // TODO: This can be eliminated by modifying the actual traceback function in route_timing if (rcv_path_manager.is_enabled()) { - rcv_path_manager.insert_backwards_path_into_traceback(cheapest->path_data, cheapest->cost, cheapest->backward_path_cost, route_ctx); + rcv_path_manager.insert_backwards_path_into_traceback(rcv_path_data[inode], + rr_node_route_inf_[inode].path_cost, + rr_node_route_inf_[inode].backward_path_cost, + route_ctx); } VTR_LOGV_DEBUG(router_debug_, " Found target %8d (%s)\n", inode, describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, inode, is_flat_).c_str()); break; } // If not, keep searching - timing_driven_expand_cheapest(cheapest, + timing_driven_expand_cheapest(inode, + new_total_cost, sink_node, cost_params, bounding_box, target_bb); - rcv_path_manager.free_path_struct(cheapest->path_data); - heap_.free(cheapest); - cheapest = nullptr; - } - - if (router_debug_) { - //Update known path costs for nodes pushed but not popped, useful for debugging - empty_heap_annotating_node_route_inf(); + // rcv_path_manager.free_path_struct(rcv_path_data[inode]); // TODO: double-check the correctness } - if (cheapest == nullptr) { /* Impossible routing. No path for net. */ - VTR_LOGV_DEBUG(router_debug_, " Empty heap (no path found)\n"); - return nullptr; - } - - return cheapest; + // Stop measuring time after the barrier and the heap is reset. + std::chrono::steady_clock::time_point end_time = std::chrono::steady_clock::now(); + this->sssp_total_time += std::chrono::duration_cast(end_time - begin_time); } // Find shortest paths from specified route tree to all nodes in the RR graph @@ -311,17 +309,17 @@ vtr::vector ConnectionRouter::timing_driven_find_all_sho VTR_LOGV_DEBUG(router_debug_, " Initial heap empty (no source)\n"); } - while (!heap_.is_empty_heap()) { - // cheapest t_heap in current route tree to be expanded on - t_heap* cheapest = heap_.get_heap_head(); + float new_total_cost; + RRNodeId inode; + while (heap_.try_pop(new_total_cost, inode)) { + // inode with cheapest total cost in current route tree to be expanded on update_router_stats(router_stats_, false, - cheapest->index, + inode, rr_graph_); - RRNodeId inode = cheapest->index; VTR_LOGV_DEBUG(router_debug_, " Popping node %d (cost: %g)\n", - inode, cheapest->cost); + inode, new_total_cost); // Since we want to find shortest paths to all nodes in the graph // we do not specify a target node. @@ -330,41 +328,35 @@ vtr::vector ConnectionRouter::timing_driven_find_all_sho // lookahead we can re-use the node exploration code from the regular router RRNodeId target_node = RRNodeId::INVALID(); - timing_driven_expand_cheapest(cheapest, + timing_driven_expand_cheapest(inode, + new_total_cost, target_node, cost_params, bounding_box, t_bb()); - if (cheapest_paths[inode].index == RRNodeId::INVALID() || cheapest_paths[inode].cost >= cheapest->cost) { - VTR_LOGV_DEBUG(router_debug_, " Better cost to node %d: %g (was %g)\n", inode, cheapest->cost, cheapest_paths[inode].cost); - cheapest_paths[inode] = *cheapest; + if (cheapest_paths[inode].index == RRNodeId::INVALID() || cheapest_paths[inode].cost >= new_total_cost) { + VTR_LOGV_DEBUG(router_debug_, " Better cost to node %d: %g (was %g)\n", inode, new_total_cost, cheapest_paths[inode].cost); + // Only the `index` and `prev_edge()` fields of `cheapest_paths[inode]` are used after this function returns + cheapest_paths[inode].index = inode; + cheapest_paths[inode].set_prev_edge(rr_node_route_inf_[inode].prev_edge); } else { - VTR_LOGV_DEBUG(router_debug_, " Worse cost to node %d: %g (better %g)\n", inode, cheapest->cost, cheapest_paths[inode].cost); + VTR_LOGV_DEBUG(router_debug_, " Worse cost to node %d: %g (better %g)\n", inode, new_total_cost, cheapest_paths[inode].cost); } - rcv_path_manager.free_path_struct(cheapest->path_data); - heap_.free(cheapest); + // rcv_path_manager.free_path_struct(cheapest->path_data); // TODO: double-check the correctness } return cheapest_paths; } template -void ConnectionRouter::timing_driven_expand_cheapest(t_heap* cheapest, +void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, + float new_total_cost, RRNodeId target_node, const t_conn_cost_params& cost_params, const t_bb& bounding_box, const t_bb& target_bb) { - RRNodeId inode = cheapest->index; - - t_rr_node_route_inf* route_inf = &rr_node_route_inf_[inode]; - float best_total_cost = route_inf->path_cost; - float best_back_cost = route_inf->backward_path_cost; - - float new_total_cost = cheapest->cost; - float new_back_cost = cheapest->backward_path_cost; - /* I only re-expand a node if both the "known" backward cost is lower * * in the new expansion (this is necessary to prevent loops from * * forming in the routing and causing havoc) *and* the expected total * @@ -373,42 +365,48 @@ void ConnectionRouter::timing_driven_expand_cheapest(t_heap* cheapest, * than one with higher cost. Test whether or not I should disallow * * re-expansion based on a higher total cost. */ - if (best_total_cost > new_total_cost && ((rcv_path_manager.is_enabled()) || best_back_cost > new_back_cost)) { - // Explore from this node, since the current/new partial path has the best cost - // found so far - VTR_LOGV_DEBUG(router_debug_, " Better cost to %d\n", inode); + float best_total_cost = rr_node_route_inf_[from_node].path_cost; + if (best_total_cost == new_total_cost) { + // Explore from this node, since its total cost is exactly the same as + // the best total cost ever seen for this node. Otherwise, prune this node + // to reduce redundant work (i.e., unnecessary neighbor exploration). + // `new_total_cost` is used here as an identifier to detect if the pair + // (from_node or inode, new_total_cost) was the most recently pushed + // element for the corresponding node. + node_t current; + current.backward_path_cost = rr_node_route_inf_[from_node].backward_path_cost; + current.R_upstream = rr_node_route_inf_[from_node].R_upstream; + current.prev_edge = rr_node_route_inf_[from_node].prev_edge; + // rcv_path_manager.move(current.path_data, rcv_path_data[from_node]); + + VTR_LOGV_DEBUG(router_debug_, " Better cost to %d\n", from_node); VTR_LOGV_DEBUG(router_debug_, " New total cost: %g\n", new_total_cost); - VTR_LOGV_DEBUG(router_debug_, " New back cost: %g\n", new_back_cost); - VTR_LOGV_DEBUG(router_debug_ && (rr_nodes_.node_type(RRNodeId(cheapest->index)) != t_rr_type::SOURCE), " Setting path costs for associated node %d (from %d edge %zu)\n", - cheapest->index, - static_cast(rr_graph_->edge_src_node(cheapest->prev_edge())), - static_cast(cheapest->prev_edge())); - - update_cheapest(cheapest, route_inf); + VTR_LOGV_DEBUG(router_debug_ && (rr_nodes_.node_type(RRNodeId(from_node)) != t_rr_type::SOURCE), " Setting path costs for associated node %d (from %d edge %zu)\n", + from_node, + static_cast(rr_graph_->edge_src_node(current.prev_edge)), + static_cast(current.prev_edge)); - timing_driven_expand_neighbours(cheapest, cost_params, bounding_box, + timing_driven_expand_neighbours(current, cost_params, bounding_box, from_node, target_node, target_bb); } else { // Post-heap prune, do not re-explore from the current/new partial path as it // has worse cost than the best partial path to this node found so far - VTR_LOGV_DEBUG(router_debug_, " Worse cost to %d\n", inode); + VTR_LOGV_DEBUG(router_debug_, " Worse cost to %d\n", from_node); VTR_LOGV_DEBUG(router_debug_, " Old total cost: %g\n", best_total_cost); - VTR_LOGV_DEBUG(router_debug_, " Old back cost: %g\n", best_back_cost); VTR_LOGV_DEBUG(router_debug_, " New total cost: %g\n", new_total_cost); - VTR_LOGV_DEBUG(router_debug_, " New back cost: %g\n", new_back_cost); } } template -void ConnectionRouter::timing_driven_expand_neighbours(t_heap* current, +void ConnectionRouter::timing_driven_expand_neighbours(const node_t& current, const t_conn_cost_params& cost_params, const t_bb& bounding_box, + RRNodeId from_node, RRNodeId target_node, const t_bb& target_bb) { /* Puts all the rr_nodes adjacent to current on the heap. */ // For each node associated with the current heap element, expand all of it's neighbors - RRNodeId from_node = current->index; auto edges = rr_nodes_.edge_range(from_node); // This is a simple prefetch that prefetches: @@ -453,7 +451,7 @@ void ConnectionRouter::timing_driven_expand_neighbours(t_heap* current, // RR nodes outside the expanded bounding box specified in bounding_box are not added // to the heap. template -void ConnectionRouter::timing_driven_expand_neighbour(t_heap* current, +void ConnectionRouter::timing_driven_expand_neighbour(const node_t& current, RRNodeId from_node, RREdgeId from_edge, RRNodeId to_node, @@ -521,7 +519,7 @@ void ConnectionRouter::timing_driven_expand_neighbour(t_heap* current, // Other pruning methods have been disabled when RCV is on, so this method is required to prevent "loops" from being created bool node_exists = false; if (rcv_path_manager.is_enabled()) { - node_exists = rcv_path_manager.node_exists_in_tree(current->path_data, + node_exists = rcv_path_manager.node_exists_in_tree(rcv_path_data[from_node], to_node); } @@ -538,29 +536,28 @@ void ConnectionRouter::timing_driven_expand_neighbour(t_heap* current, // Add to_node to the heap, and also add any nodes which are connected by non-configurable edges template void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& cost_params, - const t_heap* current, + const node_t& current, RRNodeId from_node, RRNodeId to_node, const RREdgeId from_edge, RRNodeId target_node) { const auto& device_ctx = g_vpr_ctx.device(); - t_heap next; + + // Initialized to current + node_t next; + next.R_upstream = current.R_upstream; + next.prev_edge = from_edge; + next.total_cost = std::numeric_limits::infinity(); // Not used directly + next.backward_path_cost = current.backward_path_cost; // Initalize RCV data struct if needed, otherwise it's set to nullptr rcv_path_manager.alloc_path_struct(next.path_data); - - // Costs initialized to current - next.cost = std::numeric_limits::infinity(); //Not used directly - next.backward_path_cost = current->backward_path_cost; - // path_data variables are initialized to current values - if (rcv_path_manager.is_enabled() && current->path_data) { - next.path_data->backward_cong = current->path_data->backward_cong; - next.path_data->backward_delay = current->path_data->backward_delay; + if (rcv_path_manager.is_enabled() && rcv_path_data[from_node]) { + next.path_data->backward_cong = rcv_path_data[from_node]->backward_cong; + next.path_data->backward_delay = rcv_path_data[from_node]->backward_delay; } - next.R_upstream = current->R_upstream; - evaluate_timing_driven_node_costs(&next, cost_params, from_node, @@ -571,10 +568,10 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& float best_total_cost = rr_node_route_inf_[to_node].path_cost; float best_back_cost = rr_node_route_inf_[to_node].backward_path_cost; - float new_total_cost = next.cost; + float new_total_cost = next.total_cost; float new_back_cost = next.backward_path_cost; - if (new_total_cost < best_total_cost && ((rcv_path_manager.is_enabled()) || (new_back_cost < best_back_cost))) { + if (best_back_cost > new_back_cost) { // TODO: double check the correctness of expansion condition with RCV VTR_LOGV_DEBUG(router_debug_, " Expanding to node %d (%s)\n", to_node, describe_rr_node(device_ctx.rr_graph, device_ctx.grid, @@ -588,26 +585,19 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& // //Pre-heap prune to keep the heap small, by not putting paths which are known to be //sub-optimal (at this point in time) into the heap. - t_heap* next_ptr = heap_.alloc(); + update_cheapest(next, to_node); // Use the already created next path structure pointer when RCV is enabled - if (rcv_path_manager.is_enabled()) rcv_path_manager.move(next_ptr->path_data, next.path_data); - - //Record how we reached this node - next_ptr->cost = next.cost; - next_ptr->R_upstream = next.R_upstream; - next_ptr->backward_path_cost = next.backward_path_cost; - next_ptr->index = to_node; - next_ptr->set_prev_edge(from_edge); - - if (rcv_path_manager.is_enabled() && current->path_data) { - next_ptr->path_data->path_rr = current->path_data->path_rr; - next_ptr->path_data->edge = current->path_data->edge; - next_ptr->path_data->path_rr.emplace_back(from_node); - next_ptr->path_data->edge.emplace_back(from_edge); + if (rcv_path_manager.is_enabled()) { + rcv_path_manager.move(rcv_path_data[to_node], next.path_data); + + rcv_path_data[to_node]->path_rr = rcv_path_data[from_node]->path_rr; + rcv_path_data[to_node]->edge = rcv_path_data[from_node]->edge; + rcv_path_data[to_node]->path_rr.push_back(from_node); + rcv_path_data[to_node]->edge.push_back(from_edge); } - heap_.add_to_heap(next_ptr); + heap_.add_to_heap(new_total_cost, to_node); update_router_stats(router_stats_, true, to_node, @@ -697,7 +687,7 @@ void ConnectionRouter::set_rcv_enabled(bool enable) { //Calculates the cost of reaching to_node template -void ConnectionRouter::evaluate_timing_driven_node_costs(t_heap* to, +void ConnectionRouter::evaluate_timing_driven_node_costs(node_t* to, const t_conn_cost_params& cost_params, RRNodeId from_node, RRNodeId to_node, @@ -804,39 +794,19 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(t_heap* to, const auto& device_ctx = g_vpr_ctx.device(); //Update total cost float expected_cost = router_lookahead_.get_expected_cost(to_node, - target_node, - cost_params, - to->R_upstream); + target_node, + cost_params, + to->R_upstream); VTR_LOGV_DEBUG(router_debug_ && !std::isfinite(expected_cost), - " Lookahead from %s (%s) to %s (%s) is non-finite, expected_cost = %f, to->R_upstream = %f\n", - rr_node_arch_name(to_node, is_flat_).c_str(), - describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, to_node, is_flat_).c_str(), - rr_node_arch_name(target_node, is_flat_).c_str(), - describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, target_node, is_flat_).c_str(), - expected_cost, to->R_upstream); + " Lookahead from %s (%s) to %s (%s) is non-finite, expected_cost = %f, to->R_upstream = %f\n", + rr_node_arch_name(to_node, is_flat_).c_str(), + describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, to_node, is_flat_).c_str(), + rr_node_arch_name(target_node, is_flat_).c_str(), + describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, target_node, is_flat_).c_str(), + expected_cost, to->R_upstream); total_cost += to->backward_path_cost + cost_params.astar_fac * std::max(0.f, expected_cost - cost_params.astar_offset); } - to->cost = total_cost; -} - -template -void ConnectionRouter::empty_heap_annotating_node_route_inf() { - //Pop any remaining nodes in the heap and annotate their costs - // - //Useful for visualizing router expansion in graphics, as it shows - //the cost of all nodes considered by the router (e.g. nodes never - //expanded, such as parts of the initial route tree far from the - //target). - while (!heap_.is_empty_heap()) { - t_heap* tmp = heap_.get_heap_head(); - - rr_node_route_inf_[tmp->index].path_cost = tmp->cost; - rr_node_route_inf_[tmp->index].backward_path_cost = tmp->backward_path_cost; - modified_rr_node_inf_.push_back(tmp->index); - - rcv_path_manager.free_path_struct(tmp->path_data); - heap_.free(tmp); - } + to->total_cost = total_cost; } //Adds the route tree rooted at rt_node to the heap, preparing it to be @@ -913,14 +883,35 @@ void ConnectionRouter::add_route_tree_node_to_heap( tot_cost, describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, inode, is_flat_).c_str()); - push_back_node(&heap_, rr_node_route_inf_, - inode, tot_cost, RREdgeId::INVALID(), - backward_path_cost, R_upstream); + if (tot_cost > rr_node_route_inf_[inode].path_cost) { + return ; + } + add_to_mod_list(inode); + rr_node_route_inf_[inode].path_cost = tot_cost; + rr_node_route_inf_[inode].prev_edge = RREdgeId::INVALID(); + rr_node_route_inf_[inode].backward_path_cost = backward_path_cost; + rr_node_route_inf_[inode].R_upstream = R_upstream; + heap_.push_back(tot_cost, inode); + + // push_back_node(&heap_, rr_node_route_inf_, + // inode, tot_cost, RREdgeId::INVALID(), + // backward_path_cost, R_upstream); } else { float expected_total_cost = compute_node_cost_using_rcv(cost_params, inode, target_node, rt_node.Tdel, 0, R_upstream); - push_back_node_with_info(&heap_, inode, expected_total_cost, - backward_path_cost, R_upstream, rt_node.Tdel, &rcv_path_manager); + add_to_mod_list(inode); + rr_node_route_inf_[inode].path_cost = expected_total_cost; + rr_node_route_inf_[inode].prev_edge = RREdgeId::INVALID(); + rr_node_route_inf_[inode].backward_path_cost = backward_path_cost; + rr_node_route_inf_[inode].R_upstream = R_upstream; + + rcv_path_manager.alloc_path_struct(rcv_path_data[inode]); + rcv_path_data[inode]->backward_delay = rt_node.Tdel; + + heap_.push_back(expected_total_cost, inode); + + // push_back_node_with_info(&heap_, inode, expected_total_cost, + // backward_path_cost, R_upstream, rt_node.Tdel, &rcv_path_manager); } update_router_stats(router_stats_, diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index 4118c5a7c7f..cc7c1f4f1a5 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -10,8 +10,20 @@ #include "router_stats.h" #include "spatial_route_tree_lookup.h" +#include "d_ary_heap.h" + +// `node_t` is a simplified version of `t_heap`, and is used as a bundle of node +// information in the functions inside the routing loop. +struct node_t { + float total_cost; + float backward_path_cost; + float R_upstream; + RREdgeId prev_edge; + t_heap_path* path_data; +}; + // Prune the heap when it contains 4x the number of nodes in the RR graph. -constexpr size_t kHeapPruneFactor = 4; +// constexpr size_t kHeapPruneFactor = 4; // This class encapsolates the timing driven connection router. This class // routes from some initial set of sources (via the input rt tree) to a @@ -46,8 +58,13 @@ class ConnectionRouter : public ConnectionRouterInterface { , router_stats_(nullptr) , router_debug_(false) { heap_.init_heap(grid); - heap_.set_prune_limit(rr_nodes_.size(), kHeapPruneFactor * rr_nodes_.size()); + // heap_.set_prune_limit(rr_nodes_.size(), kHeapPruneFactor * rr_nodes_.size()); only_opin_inter_layer = (grid.get_num_layers() > 1) && inter_layer_connections_limited_to_opin(*rr_graph); + rcv_path_data.resize(rr_node_route_inf.size()); + } + + ~ConnectionRouter() { + VTR_LOG("Serial Connection Router is being destroyed. Time spent computing SSSP: %.3f seconds\n.", this->sssp_total_time.count() / 1000000.0); } // Clear's the modified list. Should be called after reset_path_costs @@ -58,7 +75,12 @@ class ConnectionRouter : public ConnectionRouterInterface { // Reset modified data in rr_node_route_inf based on modified_rr_node_inf. void reset_path_costs() final { + // Reset the node info stored in rr_node_route_inf variable ::reset_path_costs(modified_rr_node_inf_); + // Reset the node info stored inside the connection router + for (const auto& node : modified_rr_node_inf_) { + rcv_path_data[node] = nullptr; + } } /** Finds a path from the route tree rooted at rt_root to sink_node. @@ -137,17 +159,17 @@ class ConnectionRouter : public ConnectionRouterInterface { } // Update the route path to the node pointed to by cheapest. - inline void update_cheapest(t_heap* cheapest) { - update_cheapest(cheapest, &rr_node_route_inf_[cheapest->index]); + inline void update_cheapest(const node_t& cheapest, RRNodeId inode) { + update_cheapest(cheapest, inode, &rr_node_route_inf_[inode]); } - inline void update_cheapest(t_heap* cheapest, t_rr_node_route_inf* route_inf) { + inline void update_cheapest(const node_t& cheapest, RRNodeId inode, t_rr_node_route_inf* route_inf) { //Record final link to target - add_to_mod_list(cheapest->index); + add_to_mod_list(inode); - route_inf->prev_edge = cheapest->prev_edge(); - route_inf->path_cost = cheapest->cost; - route_inf->backward_path_cost = cheapest->backward_path_cost; + route_inf->prev_edge = cheapest.prev_edge; + route_inf->path_cost = cheapest.total_cost; + route_inf->backward_path_cost = cheapest.backward_path_cost; } /** Common logic from timing_driven_route_connection_from_route_tree and @@ -159,7 +181,7 @@ class ConnectionRouter : public ConnectionRouterInterface { * @param[in] bounding_box Keep search confined to this bounding box * @return bool Signal to retry this connection with a full-device bounding box, * @return t_heap* Heap element describing the path found. */ - std::tuple timing_driven_route_connection_common_setup( + bool timing_driven_route_connection_common_setup( const RouteTreeNode& rt_root, RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -174,14 +196,15 @@ class ConnectionRouter : public ConnectionRouterInterface { // // Returns either the last element of the path, or nullptr if no path is // found - t_heap* timing_driven_route_connection_from_heap( + void timing_driven_route_connection_from_heap( RRNodeId sink_node, const t_conn_cost_params& cost_params, const t_bb& bounding_box); // Expand this current node if it is a cheaper path. void timing_driven_expand_cheapest( - t_heap* cheapest, + RRNodeId from_node, + float new_total_cost, RRNodeId target_node, const t_conn_cost_params& cost_params, const t_bb& bounding_box, @@ -189,9 +212,10 @@ class ConnectionRouter : public ConnectionRouterInterface { // Expand each neighbor of the current node. void timing_driven_expand_neighbours( - t_heap* current, + const node_t& current, const t_conn_cost_params& cost_params, const t_bb& bounding_box, + RRNodeId from_node, RRNodeId target_node, const t_bb& target_bb); @@ -201,7 +225,7 @@ class ConnectionRouter : public ConnectionRouterInterface { // RR nodes outside bounding box specified in bounding_box are not added // to the heap. void timing_driven_expand_neighbour( - t_heap* current, + const node_t& current, RRNodeId from_node, RREdgeId from_edge, RRNodeId to_node, @@ -214,7 +238,7 @@ class ConnectionRouter : public ConnectionRouterInterface { // non-configurable edges void timing_driven_add_to_heap( const t_conn_cost_params& cost_params, - const t_heap* current, + const node_t& current, RRNodeId from_node, RRNodeId to_node, RREdgeId from_edge, @@ -222,7 +246,7 @@ class ConnectionRouter : public ConnectionRouterInterface { // Calculates the cost of reaching to_node void evaluate_timing_driven_node_costs( - t_heap* to, + node_t* to, const t_conn_cost_params& cost_params, RRNodeId from_node, RRNodeId to_node, @@ -234,8 +258,6 @@ class ConnectionRouter : public ConnectionRouterInterface { const t_conn_cost_params& cost_params, const t_bb& bounding_box); - void empty_heap_annotating_node_route_inf(); - //Adds the route tree rooted at rt_node to the heap, preparing it to be //used as branch-points for further routing. void add_route_tree_to_heap(const RouteTreeNode& rt_node, @@ -281,13 +303,17 @@ class ConnectionRouter : public ConnectionRouterInterface { std::vector modified_rr_node_inf_; RouterStats* router_stats_; const ConnectionParameters* conn_params_; - HeapImplementation heap_; + DAryHeap heap_; bool router_debug_; bool only_opin_inter_layer; + // Timing + std::chrono::microseconds sssp_total_time{0}; + // The path manager for RCV, keeps track of the route tree as a set, also manages the allocation of the heap types PathManager rcv_path_manager; + vtr::vector rcv_path_data; }; /** Construct a connection router that uses the specified heap type. diff --git a/vpr/src/route/d_ary_heap.h b/vpr/src/route/d_ary_heap.h new file mode 100644 index 00000000000..11aa57fc0ea --- /dev/null +++ b/vpr/src/route/d_ary_heap.h @@ -0,0 +1,82 @@ +#ifndef _VTR_D_ARY_HEAP_H +#define _VTR_D_ARY_HEAP_H + +#include +#include +#include + +#include "device_grid.h" +#include "rr_graph_fwd.h" +#include "d_ary_heap.tpp" + +using pq_prio_t = float; +using pq_index_t = uint32_t; + +inline pq_index_t cast_RRNodeId_to_pq_index_t(RRNodeId node) { + static_assert(sizeof(RRNodeId) == sizeof(pq_index_t)); + return static_cast(std::size_t(node)); +} + +class DAryHeap { + public: + using pq_pair_t = std::tuple; + struct pq_compare { + bool operator()(const pq_pair_t& u, const pq_pair_t& v) { + return std::get<0>(u) > std::get<0>(v); + } + }; + using pq_io_t = customized_d_ary_priority_queue<4, pq_pair_t, std::vector, pq_compare>; + + DAryHeap() { + pq_ = new pq_io_t(); + } + + ~DAryHeap(){ + delete pq_; + } + + void init_heap(const DeviceGrid& grid) { + size_t target_heap_size = (grid.width() - 1) * (grid.height() - 1); + pq_->reserve(target_heap_size); + } + + bool try_pop(pq_prio_t &prio, RRNodeId &node) { + if (pq_->empty()) { + return false; + } else { + pq_index_t node_id; + std::tie(prio, node_id) = pq_->top(); + static_assert(sizeof(RRNodeId) == sizeof(pq_index_t)); + node = RRNodeId(node_id); + pq_->pop(); + return true; + } + } + + void add_to_heap(const pq_prio_t& prio, const RRNodeId& node) { + pq_->push({prio, cast_RRNodeId_to_pq_index_t(node)}); + } + + void push_back(const pq_prio_t& prio, const RRNodeId& node) { + pq_->push({prio, cast_RRNodeId_to_pq_index_t(node)}); + } + + bool is_empty_heap() const { + return (bool)(pq_->empty()); + } + + bool is_valid() const { + return true; + } + + void empty_heap() { + pq_->clear(); + } + + void build_heap() {} + + private: + pq_io_t* pq_; +}; + +#endif /* _VTR_D_ARY_HEAP_H */ diff --git a/vpr/src/route/d_ary_heap.tpp b/vpr/src/route/d_ary_heap.tpp new file mode 100644 index 00000000000..18c0189b751 --- /dev/null +++ b/vpr/src/route/d_ary_heap.tpp @@ -0,0 +1,157 @@ +#pragma once + +#include +#include + +template, class Compare = std::less> +class customized_d_ary_priority_queue { + static_assert(D == 2 || D == 4, "Only support binary or 4-ary priority queue"); + + public: + typedef Container container_type; + typedef typename Container::value_type value_type; + typedef typename Container::size_type size_type; + typedef typename Container::reference reference; + typedef typename Container::const_reference const_reference; + + Compare comp_; + Container heap_; + + private: + inline size_t parent_index(const size_t i) { + if constexpr (D == 2) { + return i >> 1; + } else { + return (i + 2) >> 2; + } + } + + inline size_t first_child_index(const size_t i) { + if constexpr (D == 2) { + return i << 1; + } else { + return (i << 2) - 2; + } + } + + inline size_t largest_child_index(const size_t first_child) { + if constexpr (D == 2) { + return first_child + !!comp_(heap_[first_child], heap_[first_child + 1]); + } else { + const size_t child_1 = first_child; + const size_t child_2 = child_1 + 1; + const size_t child_3 = child_1 + 2; + const size_t child_4 = child_1 + 3; + const size_t first_half_largest = child_1 + !!comp_(heap_[child_1], heap_[child_2]); + const size_t second_half_largest = child_3 + !!comp_(heap_[child_3], heap_[child_4]); + return comp_(heap_[first_half_largest], heap_[second_half_largest]) ? second_half_largest : first_half_largest; + } + } + + inline size_t largest_child_index_partial(const size_t first_child, const size_t num_children /*must < `D`*/) { + if constexpr (D == 2) { + return first_child; + } else { + switch (num_children) { + case 3: { + const size_t child_1 = first_child; + const size_t child_2 = child_1 + 1; + const size_t child_3 = child_1 + 2; + const size_t first_two_children_largest = child_1 + !!comp_(heap_[child_1], heap_[child_2]); + return comp_(heap_[first_two_children_largest], heap_[child_3]) ? child_3 : first_two_children_largest; + } + case 2: { + return first_child + !!comp_(heap_[first_child], heap_[first_child + 1]); + } + default: { + return first_child; + } + } + } + } + + inline void make_customized_heap() { + std::make_heap(heap_.begin() + 1, heap_.end(), comp_); + } + + inline void pop_customized_heap() { + size_t length = heap_.size() - 1; + auto end = heap_.end(); + auto value = std::move(end[-1]); + end[-1] = std::move(heap_[1]); + size_t index = 1; + for (;;) { + size_t first_child = first_child_index(index); + size_t last_child = first_child + (D - 1); + if (last_child < length) { + size_t largest_child = largest_child_index(first_child); + if (!comp_(value, heap_[largest_child])) { + break; + } + heap_[index] = std::move(heap_[largest_child]); + index = largest_child; + } else if (first_child < length) { + size_t largest_child = largest_child_index_partial(first_child, length - first_child); + if (comp_(value, heap_[largest_child])) { + heap_[index] = std::move(heap_[largest_child]); + index = largest_child; + } + break; + } else { + break; + } + } + heap_[index] = std::move(value); + } + + inline void push_customized_heap() { + auto value = std::move(heap_.back()); + size_t index = heap_.size() - 1; + while (index > 1) { + size_t parent = parent_index(index); + if (!comp_(heap_[parent], value)) { + break; + } + heap_[index] = std::move(heap_[parent]); + index = parent; + } + heap_[index] = std::move(value); + } + + public: + explicit customized_d_ary_priority_queue(const Compare& compare = Compare(), + const Container& cont = Container()) + : comp_(compare) + , heap_(cont) { + heap_.resize(1); + } + + inline bool empty() const { + return heap_.size() == 1; // heap_[0] is invalid, heap is indexed from 1 + } + + inline size_type size() const { + return heap_.size() - 1; // heap_[0] is invalid, heap is indexed from 1 + } + + inline const_reference top() const { return heap_[1]; } + + inline void pop() { + pop_customized_heap(); + heap_.pop_back(); + } + + inline void push(const value_type& value) { + heap_.push_back(value); + push_customized_heap(); + } + + inline void push(value_type&& value) { + heap_.push_back(std::move(value)); + push_customized_heap(); + } + + inline void clear() { heap_.resize(1); } + + inline void reserve(size_type new_cap) { heap_.reserve(new_cap + 1); } +}; diff --git a/vpr/src/route/route_common.h b/vpr/src/route/route_common.h index a6f18f3af38..69b8bfb136a 100644 --- a/vpr/src/route/route_common.h +++ b/vpr/src/route/route_common.h @@ -194,48 +194,48 @@ void add_node_to_heap( } } -/* Puts an rr_node on the heap with the same condition as add_node_to_heap, - * but do not fix heap property yet as that is more efficiently done from - * bottom up with build_heap */ -template -void push_back_node( - T* heap, - const RouteInf& rr_node_route_inf, - RRNodeId inode, - float total_cost, - RREdgeId prev_edge, - float backward_path_cost, - float R_upstream) { - t_heap* hptr = prepare_to_add_node_to_heap( - heap, - rr_node_route_inf, inode, total_cost, prev_edge, - backward_path_cost, R_upstream); - if (hptr) { - heap->push_back(hptr); - } -} - -/* Puts an rr_node on the heap with the same condition as node_to_heap, - * but do not fix heap property yet as that is more efficiently done from - * bottom up with build_heap. Certain information is also added */ -template -void push_back_node_with_info( - T* heap, - RRNodeId inode, - float total_cost, - float backward_path_cost, - float R_upstream, - float backward_path_delay, - PathManager* rcv_path_manager) { - t_heap* hptr = heap->alloc(); - rcv_path_manager->alloc_path_struct(hptr->path_data); - - hptr->index = inode; - hptr->cost = total_cost; - hptr->backward_path_cost = backward_path_cost; - hptr->R_upstream = R_upstream; - - hptr->path_data->backward_delay = backward_path_delay; - - heap->push_back(hptr); -} +// /* Puts an rr_node on the heap with the same condition as add_node_to_heap, +// * but do not fix heap property yet as that is more efficiently done from +// * bottom up with build_heap */ +// template +// void push_back_node( +// T* heap, +// const RouteInf& rr_node_route_inf, +// RRNodeId inode, +// float total_cost, +// RREdgeId prev_edge, +// float backward_path_cost, +// float R_upstream) { +// t_heap* hptr = prepare_to_add_node_to_heap( +// heap, +// rr_node_route_inf, inode, total_cost, prev_edge, +// backward_path_cost, R_upstream); +// if (hptr) { +// heap->push_back(hptr); +// } +// } + +// /* Puts an rr_node on the heap with the same condition as node_to_heap, +// * but do not fix heap property yet as that is more efficiently done from +// * bottom up with build_heap. Certain information is also added */ +// template +// void push_back_node_with_info( +// T* heap, +// RRNodeId inode, +// float total_cost, +// float backward_path_cost, +// float R_upstream, +// float backward_path_delay, +// PathManager* rcv_path_manager) { +// t_heap* hptr = heap->alloc(); +// rcv_path_manager->alloc_path_struct(hptr->path_data); + +// hptr->index = inode; +// hptr->cost = total_cost; +// hptr->backward_path_cost = backward_path_cost; +// hptr->R_upstream = R_upstream; + +// hptr->path_data->backward_delay = backward_path_delay; + +// heap->push_back(hptr); +// } From 0066be29f6a4c6f415973d8fdb710c06a65e297e Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Fri, 13 Sep 2024 11:17:13 -0400 Subject: [PATCH 02/14] [Router] Enhanced the Data Structure Used for RCV Simplified the RCV `path_data` pointer in `t_heap` data structure by replacing it with a float value, which is the only variable used after `t_heap` is returned following a successful connection route. --- vpr/src/route/connection_router.cpp | 15 ++++++--------- vpr/src/route/heap_type.cpp | 2 +- vpr/src/route/heap_type.h | 4 ++-- vpr/src/route/route_net.tpp | 4 ++-- 4 files changed, 11 insertions(+), 14 deletions(-) diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 901759ec3a1..ccb011db28c 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -43,8 +43,9 @@ std::tuple ConnectionRouter::timing_driven_route_conne t_heap out; // only the `index`, `prev_edge()`, and `path_data` fields of `out` are used after this function returns out.index = sink_node; out.set_prev_edge(rr_node_route_inf_[sink_node].prev_edge); - // rcv_path_manager.move(out.path_data, rcv_path_data[sink_node]); - out.path_data = rcv_path_data[sink_node]; + if (rcv_path_manager.is_enabled()) { + out.rcv_path_backward_delay = rcv_path_data[sink_node]->backward_delay; + } heap_.empty_heap(); rcv_path_manager.empty_heap(); return std::make_tuple(true, /*retry=*/false, out); @@ -173,8 +174,9 @@ std::tuple ConnectionRouter::timing_driven_route_conne t_heap out; out.index = sink_node; out.set_prev_edge(rr_node_route_inf_[sink_node].prev_edge); - // rcv_path_manager.move(out.path_data, rcv_path_data[sink_node]); - out.path_data = rcv_path_data[sink_node]; + if (rcv_path_manager.is_enabled()) { + out.rcv_path_backward_delay = rcv_path_data[sink_node]->backward_delay; + } heap_.empty_heap(); rcv_path_manager.empty_heap(); @@ -259,8 +261,6 @@ void ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeId s cost_params, bounding_box, target_bb); - - // rcv_path_manager.free_path_struct(rcv_path_data[inode]); // TODO: double-check the correctness } // Stop measuring time after the barrier and the heap is reset. @@ -343,8 +343,6 @@ vtr::vector ConnectionRouter::timing_driven_find_all_sho } else { VTR_LOGV_DEBUG(router_debug_, " Worse cost to node %d: %g (better %g)\n", inode, new_total_cost, cheapest_paths[inode].cost); } - - // rcv_path_manager.free_path_struct(cheapest->path_data); // TODO: double-check the correctness } return cheapest_paths; @@ -377,7 +375,6 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, current.backward_path_cost = rr_node_route_inf_[from_node].backward_path_cost; current.R_upstream = rr_node_route_inf_[from_node].R_upstream; current.prev_edge = rr_node_route_inf_[from_node].prev_edge; - // rcv_path_manager.move(current.path_data, rcv_path_data[from_node]); VTR_LOGV_DEBUG(router_debug_, " Better cost to %d\n", from_node); VTR_LOGV_DEBUG(router_debug_, " New total cost: %g\n", new_total_cost); diff --git a/vpr/src/route/heap_type.cpp b/vpr/src/route/heap_type.cpp index f9ee97dd657..0dcb0e768f9 100644 --- a/vpr/src/route/heap_type.cpp +++ b/vpr/src/route/heap_type.cpp @@ -29,7 +29,7 @@ HeapStorage::alloc() { temp_ptr->backward_path_cost = 0.; temp_ptr->R_upstream = 0.; temp_ptr->index = RRNodeId::INVALID(); - temp_ptr->path_data = nullptr; + temp_ptr->rcv_path_backward_delay = std::numeric_limits::infinity(); temp_ptr->set_prev_edge(RREdgeId::INVALID()); return (temp_ptr); } diff --git a/vpr/src/route/heap_type.h b/vpr/src/route/heap_type.h index e3dcb071c7d..1fec3b17dd7 100644 --- a/vpr/src/route/heap_type.h +++ b/vpr/src/route/heap_type.h @@ -23,8 +23,8 @@ struct t_heap { float R_upstream = 0.; ///@brief The RR node index associated with the costs/R_upstream values. RRNodeId index = RRNodeId::INVALID(); - ///@brief Structure to handle extra RCV structures. Managed by PathManager class. - t_heap_path* path_data; + ///@brief The delay of the partial path plus the path from route tree to source. Needed by RCV. Set to infinity if RCV is disabled + float rcv_path_backward_delay = std::numeric_limits::infinity(); /** * @brief Get the next t_heap item in the linked list. diff --git a/vpr/src/route/route_net.tpp b/vpr/src/route/route_net.tpp index 95df1a8346e..3815358d9f9 100644 --- a/vpr/src/route/route_net.tpp +++ b/vpr/src/route/route_net.tpp @@ -487,8 +487,8 @@ inline NetResultFlags route_sink(ConnectionRouter& router, update_screen(ScreenUpdatePriority::MAJOR, msg.c_str(), ROUTING, nullptr); } - if (budgeting_inf.if_set() && cheapest.path_data != nullptr && cost_params.delay_budget) { - if (cheapest.path_data->backward_delay < cost_params.delay_budget->min_delay) { + if (budgeting_inf.if_set() && cheapest.rcv_path_backward_delay != std::numeric_limits::infinity() && cost_params.delay_budget) { + if (cheapest.rcv_path_backward_delay < cost_params.delay_budget->min_delay) { budgeting_inf.set_should_reroute(net_id, true); } } From ed8277bd5877a033004182bc09a139e15fbb0e40 Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Fri, 13 Sep 2024 11:57:46 -0400 Subject: [PATCH 03/14] [Router] Removed the R_upstream field in `t_rr_node_route_inf` The `R_upstream` field added to the `t_rr_node_route_inf` structure for convenience in commit b11b2 is removed and kept inside the connection router class instead. This allows the size of each `t_rr_node_route_inf` to be as minimal as possible, which tends to be more cache-friendly when accessing the large RR node route info data, leading to higher performance. --- vpr/src/base/vpr_types.h | 7 ------- vpr/src/route/connection_router.cpp | 6 +++--- vpr/src/route/connection_router.h | 9 +++++++++ 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index 269085903bf..e169a9e82a5 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1684,13 +1684,6 @@ struct t_rr_node_route_inf { float acc_cost; float path_cost; float backward_path_cost; - float R_upstream; // TODO: Investigate the effect of adding the R_upstream field in - // this struct. It is put in for the fine-grained parallel - // router's benefits. It is increasing the working set, which - // can have some performance implications. This could affect - // the performance of the serial connection router, which will - // make the Hybrid Connection Router less efficient (but that - // needs to be investigated). public: //Accessors short occ() const { return occ_; } diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index ccb011db28c..c605978fc04 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -373,8 +373,8 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, // element for the corresponding node. node_t current; current.backward_path_cost = rr_node_route_inf_[from_node].backward_path_cost; - current.R_upstream = rr_node_route_inf_[from_node].R_upstream; current.prev_edge = rr_node_route_inf_[from_node].prev_edge; + current.R_upstream = rr_node_R_upstream[from_node]; VTR_LOGV_DEBUG(router_debug_, " Better cost to %d\n", from_node); VTR_LOGV_DEBUG(router_debug_, " New total cost: %g\n", new_total_cost); @@ -887,7 +887,7 @@ void ConnectionRouter::add_route_tree_node_to_heap( rr_node_route_inf_[inode].path_cost = tot_cost; rr_node_route_inf_[inode].prev_edge = RREdgeId::INVALID(); rr_node_route_inf_[inode].backward_path_cost = backward_path_cost; - rr_node_route_inf_[inode].R_upstream = R_upstream; + rr_node_R_upstream[inode] = R_upstream; heap_.push_back(tot_cost, inode); // push_back_node(&heap_, rr_node_route_inf_, @@ -900,7 +900,7 @@ void ConnectionRouter::add_route_tree_node_to_heap( rr_node_route_inf_[inode].path_cost = expected_total_cost; rr_node_route_inf_[inode].prev_edge = RREdgeId::INVALID(); rr_node_route_inf_[inode].backward_path_cost = backward_path_cost; - rr_node_route_inf_[inode].R_upstream = R_upstream; + rr_node_R_upstream[inode] = R_upstream; rcv_path_manager.alloc_path_struct(rcv_path_data[inode]); rcv_path_data[inode]->backward_delay = rt_node.Tdel; diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index cc7c1f4f1a5..106e69d397c 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -60,6 +60,7 @@ class ConnectionRouter : public ConnectionRouterInterface { heap_.init_heap(grid); // heap_.set_prune_limit(rr_nodes_.size(), kHeapPruneFactor * rr_nodes_.size()); only_opin_inter_layer = (grid.get_num_layers() > 1) && inter_layer_connections_limited_to_opin(*rr_graph); + rr_node_R_upstream.resize(rr_node_route_inf.size()); rcv_path_data.resize(rr_node_route_inf.size()); } @@ -81,6 +82,9 @@ class ConnectionRouter : public ConnectionRouterInterface { for (const auto& node : modified_rr_node_inf_) { rcv_path_data[node] = nullptr; } + // Note: R_upstream of each node is intentionally not reset here. + // For the reasons and details, please refer to the `Update R_upstream` + // in `evaluate_timing_driven_node_costs` in `connection_router.cpp`. } /** Finds a path from the route tree rooted at rt_root to sink_node. @@ -311,6 +315,11 @@ class ConnectionRouter : public ConnectionRouterInterface { // Timing std::chrono::microseconds sssp_total_time{0}; + // Used only by the timing-driven router. Stores the upstream resistance to ground from this node, including the resistance + // of the node itself (device_ctx.rr_nodes[index].R). Since the `t_heap` is hardly used for heap node structure in the + // connection router anymore, the `R_upstream` field of the `t_heap` is kept inside the connection router class instead. + vtr::vector rr_node_R_upstream; + // The path manager for RCV, keeps track of the route tree as a set, also manages the allocation of the heap types PathManager rcv_path_manager; vtr::vector rcv_path_data; From 726294a5d4e1b9c12ad50122455f64668aa22036 Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Fri, 13 Sep 2024 21:18:30 -0400 Subject: [PATCH 04/14] [Router] Refactored Heap Interface & Removed Deprecated Implementations - Changed APIs in the `HeapInterface` class. - Removed the `HeapStorage` class (used for dynamic memory allocations). - Removed the deprecated bucket heap implementation. - Replaced the prior k-ary heap implementation with the enhanced d-ary heap introduced in commit b11b2e. --- vpr/src/base/ShowSetup.cpp | 3 - vpr/src/base/read_options.cpp | 8 +- vpr/src/base/read_route.cpp | 2 - vpr/src/route/binary_heap.cpp | 77 ---- vpr/src/route/binary_heap.h | 17 - vpr/src/route/bucket.cpp | 550 ------------------------- vpr/src/route/bucket.h | 307 -------------- vpr/src/route/connection_router.cpp | 33 +- vpr/src/route/connection_router.h | 2 +- vpr/src/route/d_ary_heap.h | 70 ++-- vpr/src/route/d_ary_heap.tpp | 15 +- vpr/src/route/four_ary_heap.cpp | 107 ----- vpr/src/route/four_ary_heap.h | 35 -- vpr/src/route/heap_type.cpp | 60 +-- vpr/src/route/heap_type.h | 171 ++------ vpr/src/route/k_ary_heap.cpp | 173 -------- vpr/src/route/k_ary_heap.h | 125 ------ vpr/src/route/netlist_routers.h | 17 - vpr/src/route/route_common.cpp | 13 +- vpr/src/route/route_common.h | 95 ----- vpr/src/route/router_delay_profiling.h | 2 - 21 files changed, 107 insertions(+), 1775 deletions(-) delete mode 100644 vpr/src/route/binary_heap.cpp delete mode 100644 vpr/src/route/binary_heap.h delete mode 100644 vpr/src/route/bucket.cpp delete mode 100644 vpr/src/route/bucket.h delete mode 100644 vpr/src/route/four_ary_heap.cpp delete mode 100644 vpr/src/route/four_ary_heap.h delete mode 100644 vpr/src/route/k_ary_heap.cpp delete mode 100644 vpr/src/route/k_ary_heap.h diff --git a/vpr/src/base/ShowSetup.cpp b/vpr/src/base/ShowSetup.cpp index b9e32702b5d..10b8930b478 100644 --- a/vpr/src/base/ShowSetup.cpp +++ b/vpr/src/base/ShowSetup.cpp @@ -462,9 +462,6 @@ static void ShowRouterOpts(const t_router_opts& RouterOpts) { case e_heap_type::FOUR_ARY_HEAP: VTR_LOG("FOUR_ARY_HEAP\n"); break; - case e_heap_type::BUCKET_HEAP_APPROXIMATION: - VTR_LOG("BUCKET_HEAP_APPROXIMATION\n"); - break; default: VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown router_heap\n"); } diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index 5b77f5330a7..529c6c580b1 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -1063,8 +1063,6 @@ struct ParseRouterHeap { conv_value.set_value(e_heap_type::BINARY_HEAP); else if (str == "four_ary") conv_value.set_value(e_heap_type::FOUR_ARY_HEAP); - else if (str == "bucket") - conv_value.set_value(e_heap_type::BUCKET_HEAP_APPROXIMATION); else { std::stringstream msg; msg << "Invalid conversion from '" << str << "' to e_heap_type (expected one of: " << argparse::join(default_choices(), ", ") << ")"; @@ -1077,11 +1075,9 @@ struct ParseRouterHeap { ConvertedValue conv_value; if (val == e_heap_type::BINARY_HEAP) conv_value.set_value("binary"); - else if (val == e_heap_type::FOUR_ARY_HEAP) - conv_value.set_value("four_ary"); else { - VTR_ASSERT(val == e_heap_type::BUCKET_HEAP_APPROXIMATION); - conv_value.set_value("bucket"); + VTR_ASSERT(val == e_heap_type::FOUR_ARY_HEAP); + conv_value.set_value("four_ary"); } return conv_value; } diff --git a/vpr/src/base/read_route.cpp b/vpr/src/base/read_route.cpp index 269b273ab8b..b6b26a84809 100644 --- a/vpr/src/base/read_route.cpp +++ b/vpr/src/base/read_route.cpp @@ -20,7 +20,6 @@ #include #include #include -#include #include "atom_netlist.h" #include "atom_netlist_utils.h" @@ -46,7 +45,6 @@ #include "route_common.h" #include "route_tree.h" #include "read_route.h" -#include "four_ary_heap.h" #include "old_traceback.h" diff --git a/vpr/src/route/binary_heap.cpp b/vpr/src/route/binary_heap.cpp deleted file mode 100644 index 8053960d955..00000000000 --- a/vpr/src/route/binary_heap.cpp +++ /dev/null @@ -1,77 +0,0 @@ -#include "binary_heap.h" -#include "vtr_log.h" - -// child indices of a heap -static inline size_t left(size_t i) { return i << 1; } -static inline size_t right(size_t i) { return (i << 1) + 1; } - -inline size_t BinaryHeap::parent(size_t i) const { return i >> 1; } - -bool BinaryHeap::is_valid() const { - if (heap_.empty()) { - return false; - } - - for (size_t i = 1; i <= heap_tail_ >> 1; ++i) { - if (left(i) < heap_tail_ && heap_[left(i)].cost < heap_[i].cost) return false; - if (right(i) < heap_tail_ && heap_[right(i)].cost < heap_[i].cost) return false; - } - - return true; -} - -t_heap* BinaryHeap::get_heap_head() { - /* Returns a pointer to the smallest element on the heap, or NULL if the * - * heap is empty. Invalid (index == OPEN) entries on the heap are never * - * returned -- they are just skipped over. */ - - t_heap* cheapest; - size_t hole, child; - - do { - if (heap_tail_ == 1) { /* Empty heap. */ - VTR_LOG_WARN("Empty heap occurred in get_heap_head.\n"); - return (nullptr); - } - - cheapest = heap_[1].elem_ptr; - - hole = 1; - child = 2; - - --heap_tail_; - - while (child < heap_tail_) { - if (heap_[child + 1].cost < heap_[child].cost) - ++child; // become right child - - heap_[hole] = heap_[child]; - hole = child; - child = left(child); - } - - sift_up(hole, heap_[heap_tail_]); - } while (!cheapest->index.is_valid()); /* Get another one if invalid entry. */ - - return (cheapest); -} - -// make a heap rooted at index hole by **sifting down** in O(lgn) time -void BinaryHeap::sift_down(size_t hole) { - heap_elem head{heap_[hole]}; - size_t child{left(hole)}; - - while (child < heap_tail_) { - if (child + 1 < heap_tail_ && heap_[child + 1].cost < heap_[child].cost) - ++child; - - if (heap_[child].cost < head.cost) { - heap_[hole] = heap_[child]; - hole = child; - child = left(child); - } else - break; - } - - heap_[hole] = head; -} \ No newline at end of file diff --git a/vpr/src/route/binary_heap.h b/vpr/src/route/binary_heap.h deleted file mode 100644 index 2857200c0a3..00000000000 --- a/vpr/src/route/binary_heap.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef VTR_BINARY_HEAP_H -#define VTR_BINARY_HEAP_H - -#include "k_ary_heap.h" -#include - -class BinaryHeap : public KAryHeap { - public: - bool is_valid() const final; - t_heap* get_heap_head() final; - - private: - void sift_down(size_t hole) final; - size_t parent(size_t i) const final; -}; - -#endif //VTR_BINARY_HEAP_H diff --git a/vpr/src/route/bucket.cpp b/vpr/src/route/bucket.cpp deleted file mode 100644 index 1804a74e4ca..00000000000 --- a/vpr/src/route/bucket.cpp +++ /dev/null @@ -1,550 +0,0 @@ -#include "bucket.h" - -#include -#include "rr_graph_fwd.h" -#include "vtr_log.h" -#include "vpr_error.h" - -/* Bucket spacing algorithm: - * - * The size in cost each bucket consumes is a fixed width determined by - * conv_factor_. The bucket index equation is simply: - * - * bucket index = cost * conv_factor_ - * - * The default conv_factor_ is 1e12, e.g. each bucket is 1 picosecond wide. - * - * There two reasons to change conv_factor_: - * - The maximum cost item in the bucket would require too many buckets in - * heap_, and would cause memory usage to climb higher than desired. - * - The front bucket contains too many items, making the pop operation too - * cost insenstive. - * - * The other consideration is to avoid rescaling the buckets too often, as - * that operation consumes time without delivering useful work. - * - * To prevent rescaling constantly, the bucket heap determines if a rescaling - * is needed based on two conditions: - * - * - The maximum item cost (max_cost_) would require a bucket index that is - * greater than max_buckets_. When this occurs, a rescaling is done to - * make the width of the buckets larger so that the cost index for the - * max_cost_ item fits within max_buckets_. - * - * - A larger max_buckets_ results in more memory consumption, but - * accomidates a wider range of items without needing to rescale. - * - * - The number of items in the first bucket exceeds kIncreaseFocusLimit. In - * this case, the bucket heap will shrink the width of the buckets so that - * the number of entries in the first bucket drops below - * kIncreaseFocusLimit. - * - * In both of the above cases, rescaling is determined by the following - * (simplified) equation: - * - * conv_factor_ = division_scaling_ / max_cost_ - * - * The default division_scaling_ is kInitialDivisionScaling (50k). This - * can be read as using 50k buckets to evenly divided based on the - * maximum cost. For example, if max cost = 100 ns, then each bucket would - * be 2 picosecond wide. - * - * When the number of elements in the first bucket exceeds - * kIncreaseFocusLimit, division_scaling_ is multiplied by two, effectively - * halving the bucket size for a given max_cost_. In addition max_buckets_ - * is also multiplied by two to result in a similiar rescaling rate as - * max_cost_ increases. - * - * This multiply by two logic could result in an unbounded memory consumption - * in the number of buckets. To limit this, the 2x scaling for - * division_scaling_ and max_buckets_ is limited such that max_buckets_ never - * exceeds kMaxMaxBuckets - * - */ - -// Initial bucket scaling. A larger division scaling results in smaller cost -// range per bucket. -static constexpr float kInitialDivisionScaling = 50000.f; -// Initial maximum number of buckets before bucket rescaling. -static constexpr ssize_t kInitialMaxBuckets = 1000000; -// If the division scaling results in more than kIncreaseFocusLimit elements -// in the first bucket, than division scaling is increased by 2x to try to -// lower the size of the first bucket. -// -// This is an attempt to dynamically scale the bucket widths to prevent the -// bucket heap from being too cost insenstive / imprecise. -// -// When the division scaling is increased by 2x, the maximum number of buckets -// also is increased by 2x to prevent excessive rescaling during runtime. -static constexpr size_t kIncreaseFocusLimit = 2048; -// To prevent unbounded division scaling, the 2x when the first bucket is too -// large is limited by kMaxMaxBuckets. If increasing the division scaling -// will result in max_buckets_ exceeding kMaxMaxBuckets, then division scaling -// will not be increased again. -static constexpr ssize_t kMaxMaxBuckets = 16000000; - -BucketItems::BucketItems() noexcept - : alloced_items_(0) - , num_heap_allocated_(0) - , heap_free_head_(nullptr) {} - -Bucket::Bucket() noexcept - : outstanding_items_(0) - , seed_(1231) - , heap_(nullptr) - , heap_size_(0) - , heap_head_(std::numeric_limits::max()) - , heap_tail_(0) - , conv_factor_(0.f) - , division_scaling_(kInitialDivisionScaling) - , max_buckets_(kInitialMaxBuckets) - , min_cost_(0.f) - , max_cost_(0.f) - , num_items_(0) - , max_index_(std::numeric_limits::max()) - , prune_limit_(std::numeric_limits::max()) - , prune_count_(0) - , front_head_(std::numeric_limits::max()) {} - -Bucket::~Bucket() { - free_all_memory(); -} - -void Bucket::init_heap(const DeviceGrid& grid) { - delete[] heap_; - heap_ = nullptr; - - heap_size_ = (grid.width() - 1) * (grid.height() - 1); - - heap_ = new BucketItem*[heap_size_]; - for (size_t i = 0; i < (size_t)heap_size_; i++) - heap_[i] = 0; - - heap_head_ = std::numeric_limits::max(); - front_head_ = std::numeric_limits::max(); - heap_tail_ = 0; - num_items_ = 0; - prune_count_ = 0; - - conv_factor_ = kDefaultConvFactor; - division_scaling_ = kInitialDivisionScaling; - max_buckets_ = kInitialMaxBuckets; - - min_cost_ = std::numeric_limits::max(); - max_cost_ = std::numeric_limits::min(); -} - -void Bucket::free_all_memory() { - delete[] heap_; - heap_ = nullptr; - - items_.free(); -} - -void Bucket::expand(size_t required_number_of_buckets) { - auto old_size = heap_size_; - heap_size_ = required_number_of_buckets * 2; - size_t i; - - std::vector temp(heap_, heap_ + old_size); - delete[] heap_; - heap_ = new BucketItem*[heap_size_]; - for (i = 0; i < old_size; i++) - heap_[i] = temp[i]; - for (i = temp.size(); i < heap_size_; i++) - heap_[i] = nullptr; -} - -void Bucket::verify() { - for (size_t bucket = heap_head_; bucket <= heap_tail_; ++bucket) { - for (BucketItem* data = heap_[bucket]; data != nullptr; - data = data->next_bucket) { - VTR_ASSERT(data->item.cost >= 0); - int bucket_idx = cost_to_int(data->item.cost); - if (bucket_idx != static_cast(bucket)) { - VPR_FATAL_ERROR(VPR_ERROR_ROUTE, - "Wrong bucket for cost %g bucket_idx %d bucket %zu conv_factor %g", - data->item.cost, bucket_idx, bucket, conv_factor_); - } - } - } -} - -void Bucket::empty_heap() { - VTR_ASSERT(outstanding_items_ == 0); - - if (heap_head_ != std::numeric_limits::max()) { - std::fill(heap_ + heap_head_, heap_ + heap_tail_ + 1, nullptr); - } - heap_head_ = std::numeric_limits::max(); - front_head_ = std::numeric_limits::max(); - heap_tail_ = 0; - num_items_ = 0; - prune_count_ = 0; - min_push_cost_.clear(); - - // Quickly reset all items to being free'd - items_.clear(); - - conv_factor_ = kDefaultConvFactor; - division_scaling_ = kInitialDivisionScaling; - max_buckets_ = kInitialMaxBuckets; - - min_cost_ = std::numeric_limits::max(); - max_cost_ = std::numeric_limits::min(); -} - -float Bucket::rescale_func() const { - // Choose a scaling factor that accomidates division_scaling_ buckets - // between min_cost_ and max_cost_. - // - // If min and max are close to each other, assume 3 orders of - // magnitude between min and max. The goal is to rescale less often - // when the larger costs haven't been seen yet. - // - // If min and max are at least 3 orders of magnitude apart, scale - // soley based on max cost. The goal at this point is to keep the - // number of buckets between division_scaling_ and division_scaling_*2. - return division_scaling_ / max_cost_ / std::max(1.f, 1000.f / (max_cost_ / min_cost_)); -} - -void Bucket::check_conv_factor() const { - VTR_ASSERT(cost_to_int(min_cost_) >= 0); - VTR_ASSERT(cost_to_int(max_cost_) >= 0); - VTR_ASSERT(cost_to_int(max_cost_) < max_buckets_); -} - -// Checks if the scaling factor for cost results in a reasonable -// number of buckets based on the maximum cost value seen. -// -// Target number of buckets is between 50k and 100k buckets. -// Default scaling is each bucket is around ~1 ps wide. -// -// Designs with scaled costs less than 100000 (e.g. 100 ns) shouldn't require -// a bucket resize. -void Bucket::check_scaling() { - float min_cost = min_cost_; - float max_cost = max_cost_; - VTR_ASSERT(max_cost != std::numeric_limits::min()); - if (min_cost == std::numeric_limits::max()) { - min_cost = max_cost; - } - auto min_bucket = cost_to_int(min_cost); - auto max_bucket = cost_to_int(max_cost); - - // If scaling is invalid or more than 100k buckets are needed, rescale. - if (min_bucket < 0 || max_bucket < 0 || max_bucket > max_buckets_) { - rescale(); - } -} - -void Bucket::rescale() { - conv_factor_ = rescale_func(); - check_conv_factor(); - front_head_ = std::numeric_limits::max(); - - // Reheap after adjusting scaling. - if (heap_head_ != std::numeric_limits::max()) { - std::vector reheap; - for (size_t bucket = heap_head_; bucket <= heap_tail_; ++bucket) { - for (BucketItem* item = heap_[bucket]; item != nullptr; item = item->next_bucket) { - reheap.push_back(item); - } - } - - std::fill(heap_ + heap_head_, heap_ + heap_tail_ + 1, nullptr); - heap_head_ = std::numeric_limits::max(); - heap_tail_ = 0; - - for (BucketItem* item : reheap) { - outstanding_items_ += 1; - push_back(&item->item); - } - } -} - -void Bucket::push_back(t_heap* hptr) { - VTR_ASSERT(outstanding_items_ > 0); - outstanding_items_ -= 1; - - float cost = hptr->cost; - if (!std::isfinite(cost)) { - BucketItem* item = reinterpret_cast(hptr); - items_.free_item(item); - return; - } - - if (!min_push_cost_.empty()) { - if (hptr->cost > min_push_cost_[size_t(hptr->index)]) { - BucketItem* item = reinterpret_cast(hptr); - items_.free_item(item); - return; - } - - min_push_cost_[size_t(hptr->index)] = hptr->cost; - } - - // Check to see if the range of costs observed by the heap has changed. - bool check_scale = false; - - // Exclude 0 cost from min_cost to provide useful scaling factor. - if (cost < min_cost_ && cost > 0) { - min_cost_ = cost; - check_scale = true; - } - if (cost > max_cost_) { - max_cost_ = cost; - check_scale = true; - } - - // Rescale the number and size of buckets if needed based on the new - // cost range. - if (check_scale) { - check_scaling(); - } - - // Which bucket should this go into? - auto int_cost = cost_to_int(cost); - - if (int_cost < 0) { - VTR_LOG_WARN("Cost is negative? cost = %g, bucket = %d\n", cost, int_cost); - int_cost = 0; - } - - size_t uint_cost = int_cost; - - // Is that bucket allocated? - if (uint_cost >= heap_size_) { - // Not enough buckets! - expand(uint_cost); - } - - // Insert into bucket - auto* prev = heap_[uint_cost]; - - // Static assert ensures that BucketItem::item is at offset 0, - // so this cast is safe. - BucketItem* item = reinterpret_cast(hptr); - - if (front_head_ == uint_cost) { - VTR_ASSERT(prev != nullptr); - front_list_.back()->next_bucket = item; - item->next_bucket = nullptr; - front_list_.push_back(item); - } else { - // Otherwise just add to front list. - item->next_bucket = prev; - heap_[uint_cost] = item; - } - - if (uint_cost < heap_head_) { - heap_head_ = uint_cost; - } - if (uint_cost > heap_tail_) { - heap_tail_ = uint_cost; - } - - num_items_ += 1; - if (num_items_ > prune_limit_) { - prune_heap(); - } -} - -t_heap* Bucket::get_heap_head() { - auto heap_head = heap_head_; - auto heap_tail = heap_tail_; - BucketItem** heap = heap_; - - // Check empty - if (heap_head == std::numeric_limits::max()) { - return nullptr; - } - - if (front_head_ != heap_head) { - front_list_.clear(); - for (BucketItem* item = heap[heap_head]; item != nullptr; item = item->next_bucket) { - front_list_.push_back(item); - VTR_ASSERT(front_list_.size() <= num_items_); - } - - // If the front bucket is more than kIncreaseFocusLimit, then change - // the division scaling to attempt to shrink the front bucket size. - // - // kMaxMaxBuckets prevents this scaling from continuing without limit. - if (front_list_.size() > kIncreaseFocusLimit && max_buckets_ < kMaxMaxBuckets) { - division_scaling_ *= 2; - max_buckets_ *= 2; - rescale(); - return get_heap_head(); - } - VTR_ASSERT(!front_list_.empty()); - front_head_ = heap_head; - VTR_ASSERT_DEBUG(check_front_list()); - } - - // Find first non-empty bucket - - // Randomly remove element - size_t count = fast_rand() % front_list_.size(); - BucketItem* item = front_list_[count]; - - // If the element is the back of the list, just remove it. - if (count + 1 == front_list_.size()) { - if (front_list_.size() > 1) { - // Stitch into list. - front_list_[count - 1]->next_bucket = nullptr; - } else { - // List is now empty. - heap[heap_head] = nullptr; - } - } else { - // This is not the back element, so swap the element we are popping - // with the back element, then remove it. - BucketItem* swap = front_list_.back(); - if (front_list_.size() > 2) { - front_list_[front_list_.size() - 2]->next_bucket = nullptr; - } - - // Update the front_list_ - front_list_[count] = swap; - - if (count == 0) { - // Swap this element to the front of the list. - heap[heap_head] = swap; - } else { - // Stitch this element back into the list - front_list_[count - 1]->next_bucket = swap; - } - - swap->next_bucket = item->next_bucket; - } - - front_list_.pop_back(); - - VTR_ASSERT_DEBUG(check_front_list()); - - // Update first non-empty bucket if bucket is now empty - if (heap[heap_head] == nullptr) { - heap_head += 1; - while (heap_head <= heap_tail && heap[heap_head] == nullptr) { - heap_head += 1; - } - - if (heap_head > heap_tail) { - heap_head = std::numeric_limits::max(); - } - - heap_head_ = heap_head; - front_head_ = std::numeric_limits::max(); - } - - outstanding_items_ += 1; - num_items_ -= 1; - return &item->item; -} - -void Bucket::print() { - for (size_t i = heap_head_; i < heap_tail_; ++i) { - if (heap_[heap_head_] != nullptr) { - VTR_LOG("B:%d ", i); - for (auto* item = heap_[i]; item != nullptr; item = item->next_bucket) { - VTR_LOG(" %e", item->item.cost); - } - } - } - VTR_LOG("\n"); -} - -void Bucket::set_prune_limit(size_t max_index, size_t prune_limit) { - if (prune_limit != std::numeric_limits::max()) { - VTR_ASSERT(max_index < prune_limit); - } - max_index_ = max_index; - prune_limit_ = prune_limit; -} - -void Bucket::prune_heap() { - std::vector best_heap_item(max_index_, nullptr); - - for (size_t bucket = heap_head_; bucket <= heap_tail_; ++bucket) { - for (BucketItem* item = heap_[bucket]; item != nullptr; item = item->next_bucket) { - auto idx = size_t(item->item.index); - VTR_ASSERT(idx < max_index_); - if (best_heap_item[idx] == nullptr - || best_heap_item[idx]->item.cost > item->item.cost) { - best_heap_item[idx] = item; - } - } - } - - min_cost_ = std::numeric_limits::max(); - max_cost_ = std::numeric_limits::min(); - for (size_t bucket = heap_head_; bucket <= heap_tail_; ++bucket) { - BucketItem* item = heap_[bucket]; - while (item != nullptr) { - BucketItem* next_item = item->next_bucket; - auto idx = size_t(item->item.index); - - if (best_heap_item[idx] != item) { - // This item isn't the cheapest, return it to the free list. - items_.free_item(item); - } else { - // Update min_cost_ and max_cost_ - if (min_cost_ > item->item.cost) { - min_cost_ = item->item.cost; - } - if (max_cost_ < item->item.cost) { - max_cost_ = item->item.cost; - } - } - - item = next_item; - } - } - - // Rescale heap after pruning. - conv_factor_ = rescale_func(); - check_conv_factor(); - - std::fill(heap_, heap_ + heap_size_, nullptr); - heap_head_ = std::numeric_limits::max(); - front_head_ = std::numeric_limits::max(); - front_list_.clear(); - heap_tail_ = 0; - num_items_ = 0; - prune_count_ += 1; - - // Re-heap the pruned elements. - for (BucketItem* item : best_heap_item) { - if (item == nullptr) { - continue; - } - - outstanding_items_ += 1; - push_back(&item->item); - } - - verify(); - - if (prune_count_ >= 1) { - // If pruning is happening repeatedly, start pruning at entry. - min_push_cost_.resize(max_index_, std::numeric_limits::infinity()); - } -} - -bool Bucket::check_front_list() const { - VTR_ASSERT(heap_head_ == front_head_); - size_t i = 0; - BucketItem* item = heap_[heap_head_]; - while (item != nullptr) { - if (front_list_.at(i) != item) { - VTR_LOG( - "front_list_ (%p size %zu) [%zu] %p != item %p\n", - front_list_.data(), front_list_.size(), i, front_list_[i], item); - VTR_ASSERT(front_list_[i] == item); - } - i += 1; - item = item->next_bucket; - } - return false; -} diff --git a/vpr/src/route/bucket.h b/vpr/src/route/bucket.h deleted file mode 100644 index b712d54eb7b..00000000000 --- a/vpr/src/route/bucket.h +++ /dev/null @@ -1,307 +0,0 @@ -#ifndef _BUCKET_H -#define _BUCKET_H - -#include - -#include "heap_type.h" -#include "vtr_log.h" - -struct BucketItem { - t_heap item; - BucketItem* next_bucket; -}; - -// Allocator for t_heap items. -// -// This allocator supports fast clearing by maintaining an explicit object -// pool and a free list. -// -// The object pool maintained in heap_items_. Whenever a new object is -// created from the chunk allocator heap_ch_ it is added to heap_items_. -// -// When a client of BucketItems requests an objet, BucketItems first checks -// if there are any objects in the object pool that have not been allocated -// to the client (alloced_items_ < heap_items_.size()). If there are objects -// in the object pool that have not been alloced, these are use first. -// -// Once all objects from the object pool have been released, future allocations -// come from the free list (maintained in heap_free_head_). When the free list -// is empty, only then is a new item allocated from the chunk allocator. -// -// BucketItems::clear provides a fast way to reset the object pool under the -// assumption that no live references exists. It does this by mark the free -// list as empty and the object pool as being fully returned to BucketItems. -// This operation is extremely fast compared with putting all elements back -// onto the free list, as it only involves setting 3 values. -// -// This faster clear **requires** that all previous references to t_heap objects -// are dropped prior to calling clear, otherwise a silent use-after-free issue -// may occur. However because BucketItems is used in conjunction with Bucket, -// and the typical use case is for the heap to be fully emptied between -// routing, this optimization is safe. -// -class BucketItems { - public: - BucketItems() noexcept; - - // Returns all allocated items to be available for allocation. - // - // This operation is only safe if all outstanding references are discarded. - // This is true when the router is starting on a new net, as all outstanding - // items should in the bucket will be cleared at the start of routing. - void clear() { - heap_free_head_ = nullptr; - num_heap_allocated_ = 0; - alloced_items_ = 0; - } - - // Iterators over all items ever allocated. This is not the list of alive - // items, but can be used for fast invalidation if needed. - std::vector::iterator begin() { - return heap_items_.begin(); - } - std::vector::iterator end() { - return heap_items_.end(); - } - - // Deallocate all items. Outstanding references to items will become - // invalid. - void free() { - // Free each individual heap item. - for (auto* item : heap_items_) { - vtr::chunk_delete(item, &heap_ch_); - } - heap_items_.clear(); - - /*free the memory chunks that were used by heap and linked f pointer */ - free_chunk_memory(&heap_ch_); - } - - // Allocate an item. This may cause a dynamic allocation if no previously - // allocated items are available. - BucketItem* alloc_item() { - BucketItem* temp_ptr; - if (alloced_items_ < heap_items_.size()) { - // Return an unused object from the object pool. - temp_ptr = heap_items_[alloced_items_++]; - } else { - if (heap_free_head_ == nullptr) { /* No elements on the free list */ - heap_free_head_ = vtr::chunk_new(&heap_ch_); - heap_free_head_->next_bucket = nullptr; - heap_items_.push_back(heap_free_head_); - alloced_items_ += 1; - } - - temp_ptr = heap_free_head_; - heap_free_head_ = heap_free_head_->next_bucket; - } - - num_heap_allocated_++; - - return temp_ptr; - } - - // Return a free'd item to be reallocated. - void free_item(BucketItem* hptr) { - hptr->next_bucket = heap_free_head_; - heap_free_head_ = hptr; - num_heap_allocated_--; - } - - // Number of outstanding allocations. - int num_heap_allocated() { - return num_heap_allocated_; - } - - private: - /* Vector of all items ever allocated. Used for full item iteration and - * for reuse after a `clear` invocation. */ - std::vector heap_items_; - - /* Tracks how many items from heap_items_ are in use. */ - size_t alloced_items_; - - /* Number of outstanding allocated items. */ - int num_heap_allocated_; - - /* For managing my own list of currently free heap data structures. */ - BucketItem* heap_free_head_; - - /* For keeping track of the sudo malloc memory for the heap*/ - vtr::t_chunk heap_ch_; -}; - -// Prority queue approximation using cost buckets and randomization. -// -// The cost buckets are each a linked lists for costs at kDefaultConvFactor -// intervals. Given that cost is approximately delay, each bucket contains ~1 -// picosecond (1e12) worth of items. -// -// Items are pushed into the linked list that matches their cost [0, 1) -// picosecond. When popping the Bucket, a random item in the cheapest bucket -// with items is returned. This randomization exists to prevent the router -// from following identical paths when operating with identical costs. -// Consider two parallel paths to a node. -// -// To ensure that number of buckets do not get too large, whenever is element -// is added to the heap, the number of buckets required is checked. If more -// than 100k buckets are required, then the width of the buckets (conv_factor_) -// are rescaled such that ~50k buckets are required. -// -// Important node: This approximation makes some assumptions about the -// structure of costs. -// -// Assumptions: -// 1. 0 is the minimum cost -// 2. Costs that are different by 0.1 % of the maximum cost are effectively -// equivilant -// 3. The cost function is roughly linear. -// -class Bucket : public HeapInterface { - public: - Bucket() noexcept; - ~Bucket(); - - t_heap* alloc() final { - outstanding_items_ += 1; - t_heap* hptr = &items_.alloc_item()->item; - return hptr; - } - void free(t_heap* hptr) final { - // Static assert ensures that BucketItem::item is at offset 0, - // so this cast is safe. - outstanding_items_ -= 1; - items_.free_item(reinterpret_cast(hptr)); - } - - // Allocate initial buckets for items. - void init_heap(const DeviceGrid& grid) final; - - // Deallocate memory for buckets. - void free_all_memory() final; - - // Empties all buckets of items. - // - // This does NOT call BucketItems::free_item on contained items. The - // assumption is that when Bucket::clear is called, BucketItems::clear - // is also called. - void empty_heap() final; - - // Push an item onto a bucket. - void push_back(t_heap* hptr) final; - - void add_to_heap(t_heap* hptr) final { - push_back(hptr); - } - - void build_heap() final { - } - - void set_prune_limit(size_t max_index, size_t prune_limit) final; - - // Pop an item from the cheapest non-empty bucket. - // - // Returns nullptr if empty. - t_heap* get_heap_head() final; - - // True if all buckets are empty. - bool is_empty_heap() const final { - return heap_head_ == std::numeric_limits::max(); - } - - bool is_valid() const final { - return true; - } - - // Sanity check state of buckets (e.g. all items within each bucket have - // a cost that matches their bucket index. - void verify(); - - // Print items contained in buckets. - void print(); - - private: - // Factor used to convert cost from float to int. Should be scaled to - // enable sufficent precision in bucketting. - static constexpr float kDefaultConvFactor = 1e12; - - // Convert cost from float to integer bucket id. - int cost_to_int(float cost) const { - return (int)(cost * conv_factor_); - } - - // Simple fast random function used for randomizing item selection on pop. - size_t fast_rand() { - seed_ = (0x234ab32a1 * seed_) ^ (0x12acbade); - return seed_; - } - - void check_scaling(); - void rescale(); - float rescale_func() const; - void check_conv_factor() const; - bool check_front_list() const; - - // Expand the number of buckets. - // - // Only call if insufficient buckets exist. - void expand(size_t required_number_of_buckets); - - void prune_heap(); - - BucketItems items_; /* Item storage */ - - /* Number of t_heap objects alloc'd but not returned to Bucket. - * Used to verify that clearing is safe. */ - ssize_t outstanding_items_; - - size_t seed_; /* Seed for fast_rand, should be non-zero */ - - BucketItem** heap_; /* Buckets for linked lists*/ - size_t heap_size_; /* Number of buckets */ - size_t heap_head_; /* First non-empty bucket */ - size_t heap_tail_; /* Last non-empty bucket */ - float conv_factor_; /* Cost bucket scaling factor. - * - * Larger conv_factor_ means each bucket is - * smaller. - * - * bucket index = cost * conv_factor_ - * - */ - float division_scaling_; /* Scaling factor used during rescaling. - * Larger division scaling results in larger - * conversion factor. - */ - ssize_t max_buckets_; /* Maximum number of buckets to control when to - * rescale. - */ - - float min_cost_; /* Smallest cost seen */ - float max_cost_; /* Largest cost seen */ - - size_t num_items_; /* Number of items in the bucket heap. */ - size_t max_index_; /* Maximum value for index. */ - size_t prune_limit_; /* Maximum number of elements this bucket heap should - * have before the heap self compacts. - */ - size_t prune_count_; /* The number of times the bucket heap has self - * compacted. - */ - std::vector min_push_cost_; /* Lowest push cost for each index. - * Only used if the bucket has - * self-pruned. - */ - - /* In order to quickly randomly pop an element from the front bucket, - * a list of items is made. - * - * front_head_ points to the heap_ index this array was constructed from. - * If front_head_ is size_t::max or doesn't equal heap_head_, front_list_ - * needs to be re-computed. - * */ - size_t front_head_; - std::vector front_list_; -}; - -#endif /* _BUCKET_H */ diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 5a1dcab0950..fa8bf47ba03 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -2,9 +2,6 @@ #include #include "rr_graph.h" -#include "binary_heap.h" -#include "four_ary_heap.h" -#include "bucket.h" #include "rr_graph_fwd.h" static bool relevant_node_to_target(const RRGraphView* rr_graph, @@ -227,10 +224,10 @@ void ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeId s // Start measuring time before the barrier std::chrono::steady_clock::time_point begin_time = std::chrono::steady_clock::now(); - float new_total_cost; - RRNodeId inode; - while (heap_.try_pop(new_total_cost, inode)) { + HeapNode cheapest; + while (heap_.try_pop(cheapest)) { // inode with cheapest total cost in current route tree to be expanded on + const auto& [ new_total_cost, inode ] = cheapest; update_router_stats(router_stats_, false, inode, @@ -309,10 +306,10 @@ vtr::vector ConnectionRouter::timing_driven_find_all_sho VTR_LOGV_DEBUG(router_debug_, " Initial heap empty (no source)\n"); } - float new_total_cost; - RRNodeId inode; - while (heap_.try_pop(new_total_cost, inode)) { + HeapNode cheapest; + while (heap_.try_pop(cheapest)) { // inode with cheapest total cost in current route tree to be expanded on + const auto& [ new_total_cost, inode ] = cheapest; update_router_stats(router_stats_, false, inode, @@ -378,7 +375,7 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, VTR_LOGV_DEBUG(router_debug_, " Better cost to %d\n", from_node); VTR_LOGV_DEBUG(router_debug_, " New total cost: %g\n", new_total_cost); - VTR_LOGV_DEBUG(router_debug_ && (current.prev_edge != RREdgeId::INVALID()), + VTR_LOGV_DEBUG(router_debug_ && (current.prev_edge != RREdgeId::INVALID()), " Setting path costs for associated node %d (from %d edge %zu)\n", from_node, static_cast(rr_graph_->edge_src_node(current.prev_edge)), @@ -595,7 +592,7 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& rcv_path_data[to_node]->edge.push_back(from_edge); } - heap_.add_to_heap(new_total_cost, to_node); + heap_.add_to_heap({new_total_cost, to_node}); update_router_stats(router_stats_, true, to_node, @@ -889,7 +886,7 @@ void ConnectionRouter::add_route_tree_node_to_heap( rr_node_route_inf_[inode].prev_edge = RREdgeId::INVALID(); rr_node_route_inf_[inode].backward_path_cost = backward_path_cost; rr_node_R_upstream[inode] = R_upstream; - heap_.push_back(tot_cost, inode); + heap_.push_back({tot_cost, inode}); // push_back_node(&heap_, rr_node_route_inf_, // inode, tot_cost, RREdgeId::INVALID(), @@ -906,7 +903,7 @@ void ConnectionRouter::add_route_tree_node_to_heap( rcv_path_manager.alloc_path_struct(rcv_path_data[inode]); rcv_path_data[inode]->backward_delay = rt_node.Tdel; - heap_.push_back(expected_total_cost, inode); + heap_.push_back({expected_total_cost, inode}); // push_back_node_with_info(&heap_, inode, expected_total_cost, // backward_path_cost, R_upstream, rt_node.Tdel, &rcv_path_manager); @@ -1132,16 +1129,6 @@ std::unique_ptr make_connection_router(e_heap_type he rr_switch_inf, rr_node_route_inf, is_flat); - case e_heap_type::BUCKET_HEAP_APPROXIMATION: - return std::make_unique>( - grid, - router_lookahead, - rr_nodes, - rr_graph, - rr_rc_data, - rr_switch_inf, - rr_node_route_inf, - is_flat); default: VPR_FATAL_ERROR(VPR_ERROR_ROUTE, "Unknown heap_type %d", heap_type); diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index 106e69d397c..10e6b7a5e8f 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -307,7 +307,7 @@ class ConnectionRouter : public ConnectionRouterInterface { std::vector modified_rr_node_inf_; RouterStats* router_stats_; const ConnectionParameters* conn_params_; - DAryHeap heap_; + HeapImplementation heap_; bool router_debug_; bool only_opin_inter_layer; diff --git a/vpr/src/route/d_ary_heap.h b/vpr/src/route/d_ary_heap.h index 11aa57fc0ea..e70323be574 100644 --- a/vpr/src/route/d_ary_heap.h +++ b/vpr/src/route/d_ary_heap.h @@ -1,82 +1,80 @@ #ifndef _VTR_D_ARY_HEAP_H #define _VTR_D_ARY_HEAP_H -#include -#include #include #include "device_grid.h" -#include "rr_graph_fwd.h" +#include "heap_type.h" #include "d_ary_heap.tpp" -using pq_prio_t = float; -using pq_index_t = uint32_t; - -inline pq_index_t cast_RRNodeId_to_pq_index_t(RRNodeId node) { - static_assert(sizeof(RRNodeId) == sizeof(pq_index_t)); - return static_cast(std::size_t(node)); -} - -class DAryHeap { +/** + * @brief Min-heap with D child nodes per parent. + * + * @note + * Currently, DAryHeap only has two children, BinaryHeap and FourAryHeap. On small circuits, + * these heaps have negligible differences in runtime, but on larger heaps, runtime is lower when + * using FourAryHeap. On Koios large benchmarks, the runtime is ~5% better on FourAryHeap compared + * to BinaryHeap. This is likely because FourAryHeap has lower tree height, and as we can fit 8 + * heap node (each is 8 bytes) on a cache line (commonly 64 bytes on modern architectures), each + * heap operation (the comparison among sibling nodes) tends to benefit from the caches. +*/ +template +class DAryHeap : public HeapInterface { public: - using pq_pair_t = std::tuple; - struct pq_compare { - bool operator()(const pq_pair_t& u, const pq_pair_t& v) { - return std::get<0>(u) > std::get<0>(v); - } - }; - using pq_io_t = customized_d_ary_priority_queue<4, pq_pair_t, std::vector, pq_compare>; + using priority_queue = customized_d_ary_priority_queue, HeapNodeComparator>; DAryHeap() { - pq_ = new pq_io_t(); + pq_ = new priority_queue(); } - ~DAryHeap(){ + ~DAryHeap() { delete pq_; } void init_heap(const DeviceGrid& grid) { size_t target_heap_size = (grid.width() - 1) * (grid.height() - 1); - pq_->reserve(target_heap_size); + pq_->reserve(target_heap_size); // reserve the memory for the heap structure } - bool try_pop(pq_prio_t &prio, RRNodeId &node) { + bool try_pop(HeapNode& heap_node) { if (pq_->empty()) { return false; } else { - pq_index_t node_id; - std::tie(prio, node_id) = pq_->top(); - static_assert(sizeof(RRNodeId) == sizeof(pq_index_t)); - node = RRNodeId(node_id); + heap_node = pq_->top(); pq_->pop(); return true; } } - void add_to_heap(const pq_prio_t& prio, const RRNodeId& node) { - pq_->push({prio, cast_RRNodeId_to_pq_index_t(node)}); + void add_to_heap(const HeapNode& heap_node) { + pq_->push(heap_node); } - void push_back(const pq_prio_t& prio, const RRNodeId& node) { - pq_->push({prio, cast_RRNodeId_to_pq_index_t(node)}); + void push_back(const HeapNode& heap_node) { + pq_->push(heap_node); // FIXME: add to heap without maintaining the heap property } - bool is_empty_heap() const { - return (bool)(pq_->empty()); + void build_heap() { + // FIXME: restore the heap property after pushing back nodes } bool is_valid() const { - return true; + return true; // FIXME: checking if the heap property is maintained or not } void empty_heap() { pq_->clear(); } - void build_heap() {} + bool is_empty_heap() const { + return (bool)(pq_->empty()); + } private: - pq_io_t* pq_; + priority_queue* pq_; }; +using BinaryHeap = DAryHeap<2>; +using FourAryHeap = DAryHeap<4>; + #endif /* _VTR_D_ARY_HEAP_H */ diff --git a/vpr/src/route/d_ary_heap.tpp b/vpr/src/route/d_ary_heap.tpp index 18c0189b751..565b8bac72b 100644 --- a/vpr/src/route/d_ary_heap.tpp +++ b/vpr/src/route/d_ary_heap.tpp @@ -15,6 +15,14 @@ class customized_d_ary_priority_queue { typedef typename Container::const_reference const_reference; Compare comp_; + /** + * @details + * heap_ is indexed from [1..heap_size]; the 0th element is unused. This simplifies arithmetic + * in first_child_index() and parent_index() functions. + * + * @todo + * If an 8-ary heap is implemented, experiment with starting at index 0 + */ Container heap_; private: @@ -50,6 +58,7 @@ class customized_d_ary_priority_queue { inline size_t largest_child_index_partial(const size_t first_child, const size_t num_children /*must < `D`*/) { if constexpr (D == 2) { + (void) num_children; return first_child; } else { switch (num_children) { @@ -70,10 +79,6 @@ class customized_d_ary_priority_queue { } } - inline void make_customized_heap() { - std::make_heap(heap_.begin() + 1, heap_.end(), comp_); - } - inline void pop_customized_heap() { size_t length = heap_.size() - 1; auto end = heap_.end(); @@ -123,7 +128,7 @@ class customized_d_ary_priority_queue { const Container& cont = Container()) : comp_(compare) , heap_(cont) { - heap_.resize(1); + heap_.resize(1); // FIXME: currently do not support `make_heap` from cont (heap_) } inline bool empty() const { diff --git a/vpr/src/route/four_ary_heap.cpp b/vpr/src/route/four_ary_heap.cpp deleted file mode 100644 index e70ed389e9a..00000000000 --- a/vpr/src/route/four_ary_heap.cpp +++ /dev/null @@ -1,107 +0,0 @@ -#include "four_ary_heap.h" -#include "vtr_log.h" - -// The leftmost/smallest-index child of node i -static inline size_t first_child(size_t i) { return (i << 2) - 2; } - -inline size_t FourAryHeap::parent(size_t i) const { return (i + 2) >> 2; } - -inline size_t FourAryHeap::smallest_child(size_t i) const { - // This function could be a simple loop to find the min cost child. However, - // using switch-case is 3% faster, which is worthwhile as this function is - // called very frequently. - - const size_t child_1 = first_child(i); - const size_t child_2 = child_1 + 1; - const size_t child_3 = child_1 + 2; - const size_t child_4 = child_1 + 3; - - size_t num_children = std::max(std::min(4, (int)heap_tail_ - (int)child_1), 0); - - switch (num_children) { - case 4: { - size_t minA = (heap_[child_1].cost < heap_[child_2].cost) ? child_1 : child_2; - size_t minB = (heap_[child_3].cost < heap_[child_4].cost) ? child_3 : child_4; - return (heap_[minA].cost < heap_[minB].cost) ? minA : minB; - } - case 3: { - size_t minA = (heap_[child_1].cost < heap_[child_2].cost) ? child_1 : child_2; - return (heap_[minA].cost < heap_[child_3].cost) ? minA : child_3; - } - case 2: - return (heap_[child_1].cost < heap_[child_2].cost) ? child_1 : child_2; - default: - return child_1; - } -} - -bool FourAryHeap::is_valid() const { - if (heap_.empty()) { - return false; - } - - for (size_t i = 1; i <= parent(heap_tail_); ++i) { - size_t leftmost_child = first_child(i); - - for (size_t j = 0; j < 4; ++j) { - if (leftmost_child + j >= heap_tail_) - break; - else if (heap_[leftmost_child + j].cost < heap_[i].cost) - return false; - } - } - - return true; -} - -t_heap* FourAryHeap::get_heap_head() { - /* Returns a pointer to the smallest element on the heap, or NULL if the * - * heap is empty. Invalid (index == OPEN) entries on the heap are never * - * returned -- they are just skipped over. */ - - t_heap* cheapest; - size_t hole, child; - - do { - if (heap_tail_ == 1) { /* Empty heap. */ - VTR_LOG_WARN("Empty heap occurred in get_heap_head.\n"); - return (nullptr); - } - - cheapest = heap_[1].elem_ptr; - - hole = 1; - child = smallest_child(hole); - - --heap_tail_; - - while (child < heap_tail_) { - child = smallest_child(hole); - - heap_[hole] = heap_[child]; - hole = child; - child = first_child(hole); - } - - sift_up(hole, heap_[heap_tail_]); - } while (!cheapest->index.is_valid()); /* Get another one if invalid entry. */ - - return (cheapest); -} - -// make a heap rooted at index hole by **sifting down** in O(lgn) time -void FourAryHeap::sift_down(size_t hole) { - heap_elem head{heap_[hole]}; - size_t child{smallest_child(hole)}; - - while (child < heap_tail_) { - if (heap_[child].cost < head.cost) { - heap_[hole] = heap_[child]; - hole = child; - child = smallest_child(hole); - } else - break; - } - - heap_[hole] = head; -} \ No newline at end of file diff --git a/vpr/src/route/four_ary_heap.h b/vpr/src/route/four_ary_heap.h deleted file mode 100644 index 8dcb1d01b7d..00000000000 --- a/vpr/src/route/four_ary_heap.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef VTR_FOUR_ARY_HEAP_H -#define VTR_FOUR_ARY_HEAP_H - -#include "k_ary_heap.h" -#include - -/** - * @brief Minheap with 4 child nodes per parent. - * - * @note - * Currently, KAryHeap's two children are BinaryHeap and FourAryHeap. On small circuits, these - * heaps have negligible differences in runtime, but on larger heaps, runtime is lower when - * using FourAryHeap. On titan benchmarks, the runtime is ~1.8% better on FourAryHeap compared - * to BinaryHeap. This is likely because FourAryHeap is more cache friendly, as we can fit 5 - * heap_elem on a cache line. -*/ -class FourAryHeap : public KAryHeap { - public: - bool is_valid() const final; - t_heap* get_heap_head() final; - - private: - void sift_down(size_t hole) final; - size_t parent(size_t i) const final; - - /** - * @param i The parent node. - * - * @return The child node of i with the smallest cost. Returns the first (smallest index) child of i - * if i has no children. - */ - size_t smallest_child(size_t i) const; -}; - -#endif //VTR_FOUR_ARY_HEAP_H diff --git a/vpr/src/route/heap_type.cpp b/vpr/src/route/heap_type.cpp index 0dcb0e768f9..d3cfec9c495 100644 --- a/vpr/src/route/heap_type.cpp +++ b/vpr/src/route/heap_type.cpp @@ -1,63 +1,7 @@ #include "heap_type.h" -#include "binary_heap.h" -#include "four_ary_heap.h" -#include "bucket.h" -#include "rr_graph_fwd.h" #include "vpr_error.h" -#include "vpr_types.h" - -HeapStorage::HeapStorage() - : heap_free_head_(nullptr) - , num_heap_allocated_(0) {} - -t_heap* -HeapStorage::alloc() { - if (heap_free_head_ == nullptr) { /* No elements on the free list */ - heap_free_head_ = vtr::chunk_new(&heap_ch_); - } - - //Extract the head - t_heap* temp_ptr = heap_free_head_; - heap_free_head_ = heap_free_head_->next_heap_item(); - - num_heap_allocated_++; - - //Reset - temp_ptr->set_next_heap_item(nullptr); - temp_ptr->cost = 0.; - temp_ptr->backward_path_cost = 0.; - temp_ptr->R_upstream = 0.; - temp_ptr->index = RRNodeId::INVALID(); - temp_ptr->rcv_path_backward_delay = std::numeric_limits::infinity(); - temp_ptr->set_prev_edge(RREdgeId::INVALID()); - return (temp_ptr); -} - -void HeapStorage::free(t_heap* hptr) { - hptr->set_next_heap_item(heap_free_head_); - heap_free_head_ = hptr; - num_heap_allocated_--; -} - -void HeapStorage::free_all_memory() { - VTR_ASSERT(num_heap_allocated_ == 0); - - if (heap_free_head_ != nullptr) { - t_heap* curr = heap_free_head_; - while (curr) { - t_heap* tmp = curr; - curr = curr->next_heap_item(); - - vtr::chunk_delete(tmp, &heap_ch_); - } - - heap_free_head_ = nullptr; - } - - /*free the memory chunks that were used by heap and linked f pointer */ - free_chunk_memory(&heap_ch_); -} +#include "d_ary_heap.h" std::unique_ptr make_heap(e_heap_type heap_type) { switch (heap_type) { @@ -65,8 +9,6 @@ std::unique_ptr make_heap(e_heap_type heap_type) { return std::make_unique(); case e_heap_type::FOUR_ARY_HEAP: return std::make_unique(); - case e_heap_type::BUCKET_HEAP_APPROXIMATION: - return std::make_unique(); default: VPR_FATAL_ERROR(VPR_ERROR_ROUTE, "Unknown heap_type %d", heap_type); } diff --git a/vpr/src/route/heap_type.h b/vpr/src/route/heap_type.h index 1fec3b17dd7..00329e66636 100644 --- a/vpr/src/route/heap_type.h +++ b/vpr/src/route/heap_type.h @@ -1,6 +1,7 @@ #ifndef _HEAP_TYPE_H #define _HEAP_TYPE_H +#include #include "physical_types.h" #include "device_grid.h" #include "vtr_memory.h" @@ -76,118 +77,81 @@ struct t_heap { } u; }; +using HeapNodePriority = float; +using HeapNodeId = RRNodeId; +// Ensure that the heap node structure occupies only 64 bits to make the heap cache-friendly +// and achieve high performance. +static_assert(sizeof(RRNodeId) == sizeof(uint32_t)); + /** - * @brief t_heap object pool, useful for implementing heaps that conform to - * HeapInterface. + * @brief Used by the heap as its fundamental data structure. Each heap + * node contains only the heap priority value (i.e., the cost of the RR node) + * and the index of the RR node. The size of each heap node is minimized to + * ensure that the heap is cache-friendly and to make the initialization and + * copying of heap nodes efficient. */ -class HeapStorage { - public: - HeapStorage(); - - /** - * @brief Allocate a heap item. - * - * @return The allocated item. - */ - t_heap* alloc(); - - /** - * @brief Free a heap item. - */ - void free(t_heap* hptr); - - /** - * @brief Free all heap items. - */ - void free_all_memory(); - - private: - /* For keeping track of the sudo malloc memory for the heap*/ - vtr::t_chunk heap_ch_; +struct HeapNode { + ///@brief The priority value or cost used to sort heap. For the timing-driven router + /// this is the total_cost (i.e., backward_path_cost + expected cost to the target). + HeapNodePriority prio; + ///@brief The RR node index associated with the cost. + HeapNodeId node; +}; - t_heap* heap_free_head_; - size_t num_heap_allocated_; +/** + * @brief The comparison function object used to sort heap, following the STL style. + */ +struct HeapNodeComparator { + bool operator()(const HeapNode& u, const HeapNode& v) { + return u.prio > v.prio; + } }; /** * @brief Interface to heap used for router optimization. - * - * @note - * Objects used in instances of HeapInterface must always be allocated - * and free'd using the HeapInterface::alloc and HeapInterface::free methods - * of that instance. Object pools are likely in use. - * - * @details - * As a general rule, any t_heap objects returned from this interface, - * **must** be HeapInterface::free'd before destroying the HeapInterface - * instance. This ensure that no leaks are present in the users of the heap. - * Violating this assumption may result in an assertion violation. */ class HeapInterface { public: virtual ~HeapInterface() {} - /** - * @brief Allocate a heap item. - * - * @details - * This transfers ownership of the t_heap object from HeapInterface to the - * caller. - */ - virtual t_heap* alloc() = 0; - - /** - * @brief Free a heap item. - * - * @details - * HeapInterface::free can be called on objects returned from either - * HeapInterface::alloc or HeapInterface::get_heap_head. - * - * @param hptr The element to free. - */ - virtual void free(t_heap* hptr) = 0; - /** * @brief Initializes heap storage based on the size of the device. * * @note * This method **must** be invoked at least once prior to the * following methods being called:
+ * - try_pop
* - add_to_heap
* - push_back
- * - get_heap_head
- * - is_empty_heap
- * - empty_heap
* - build_heap
+ * - empty_heap
+ * - is_empty_heap
* * @param grid The FPGA device grid */ virtual void init_heap(const DeviceGrid& grid) = 0; /** - * @brief Add t_heap to heap, preserving heap property. - * - * @details - * This transfers ownership of the t_heap object to HeapInterface from the - * called. + * @brief Pop the head (smallest element) of the heap. Return true if the pop + * succeeds; otherwise (if the heap is empty), return false. * - * @param hptr The element to add. + * @param heap_node The reference to a location to store the popped heap node. */ - virtual void add_to_heap(t_heap* hptr) = 0; + virtual bool try_pop(HeapNode& heap_node) = 0; /** - * @brief Add t_heap to heap, however does not preserve heap property. + * @brief Add HeapNode to heap, preserving heap property. * - * @details - * This is useful if multiple t_heap's are being added in bulk. Once - * all t_heap's have been added, HeapInterface::build_heap can be invoked - * to restore the heap property in an efficient way.

- * This transfers ownership of the t_heap object to HeapInterface from the - * called. + * @param heap_node The element to add. + */ + virtual void add_to_heap(const HeapNode& heap_node) = 0; + + /** + * @brief Add HeapNode to heap, however does not preserve heap property. * * @param hptr The element to insert. */ - virtual void push_back(t_heap* const hptr) = 0; + virtual void push_back(const HeapNode& heap_node) = 0; /** * @brief Restore the heap property. @@ -198,20 +162,6 @@ class HeapInterface { */ virtual void build_heap() = 0; - /** - * @brief Pop the head (smallest element) of the heap, and return it. - * - * @details - * This transfers ownership of the t_heap object from HeapInterface to the - * caller. - */ - virtual t_heap* get_heap_head() = 0; - - /** - * @brief Is the heap empty? - */ - virtual bool is_empty_heap() const = 0; - /** * @brief Is the heap valid? */ @@ -223,50 +173,15 @@ class HeapInterface { virtual void empty_heap() = 0; /** - * @brief Free all storage used by the heap. - * - * @details - * This returns all memory allocated by the HeapInterface instance. Only - * call this if the heap is no longer being used. - * - * @note - * Only invoke this method if all objects returned from this - * HeapInterface instance have been free'd. - */ - virtual void free_all_memory() = 0; - - /** - * @brief Set maximum number of elements that the heap should contain - * (the prune_limit). If the prune limit is hit, then the heap should - * kick out duplicate index entries. - * - * @details - * The prune limit exists to provide a maximum bound on memory usage in - * the heap. In some pathological cases, the router may explore - * incrementally better paths, resulting in many duplicate entries for - * RR nodes. To handle this edge case, if the number of heap items - * exceeds the prune_limit, then the heap will compacts itself.

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

- * The pruning process is intended to bound the memory usage the heap can - * consume based on the prune_limit, which is expected to be a function of - * the graph size. - * - * @param max_index The highest index possible in the heap. - * @param prune_limit The maximum number of heap entries before pruning should - * take place. This should always be higher than max_index, likely by a - * significant amount. The pruning process has some overhead, so prune_limit - * should be ~2-4x the max_index to prevent excess pruning when not required. + * @brief Is the heap empty? */ - virtual void set_prune_limit(size_t max_index, size_t prune_limit) = 0; + virtual bool is_empty_heap() const = 0; }; enum class e_heap_type { INVALID_HEAP = 0, BINARY_HEAP, FOUR_ARY_HEAP, - BUCKET_HEAP_APPROXIMATION, }; /** diff --git a/vpr/src/route/k_ary_heap.cpp b/vpr/src/route/k_ary_heap.cpp deleted file mode 100644 index f7dc7b8093c..00000000000 --- a/vpr/src/route/k_ary_heap.cpp +++ /dev/null @@ -1,173 +0,0 @@ -#include "k_ary_heap.h" -#include "rr_graph_fwd.h" -#include "vtr_log.h" - -KAryHeap::KAryHeap() - : heap_() - , heap_size_(0) - , heap_tail_(0) - , max_index_(std::numeric_limits::max()) - , prune_limit_(std::numeric_limits::max()) {} - -KAryHeap::~KAryHeap() { - free_all_memory(); -} - -t_heap* KAryHeap::alloc() { - return storage_.alloc(); -} -void KAryHeap::free(t_heap* hptr) { - storage_.free(hptr); -} - -void KAryHeap::init_heap(const DeviceGrid& grid) { - size_t target_heap_size = (grid.width() - 1) * (grid.height() - 1); - if (heap_.empty() || heap_size_ < target_heap_size) { - if (!heap_.empty()) { - // coverity[offset_free : Intentional] - heap_.clear(); - } - heap_size_ = (grid.width() - 1) * (grid.height() - 1); - heap_.resize(heap_size_ + 1); /* heap_size_ + 1 because heap stores from [1..heap_size] */ - } - heap_tail_ = 1; -} - -void KAryHeap::add_to_heap(t_heap* hptr) { - expand_heap_if_full(); - // start with undefined hole - ++heap_tail_; - heap_elem new_elem = {hptr, hptr->cost}; - sift_up(heap_tail_ - 1, new_elem); - - // If we have pruned, rebuild the heap now. - if (check_prune_limit()) { - build_heap(); - } -} - -bool KAryHeap::is_empty_heap() const { - return (bool)(heap_tail_ == 1); -} - -void KAryHeap::empty_heap() { - for (size_t i = 1; i < heap_tail_; i++) - free(heap_[i].elem_ptr); - - heap_tail_ = 1; -} - -size_t KAryHeap::size() const { return heap_tail_ - 1; } // heap[0] is not valid element - -// runs in O(n) time by sifting down; the least work is done on the most elements: 1 swap for bottom layer, 2 swap for 2nd, ... lgn swap for top -// 1*(n/k^1) + 2*(n/k^2) + 3*(n/k^3) + ... + lgn*1 = k*n (sum of i/k^i) -void KAryHeap::build_heap() { - for (size_t i = parent(heap_tail_); i != 0; --i) - sift_down(i); -} - -void KAryHeap::set_prune_limit(size_t max_index, size_t prune_limit) { - if (prune_limit != std::numeric_limits::max()) { - VTR_ASSERT(max_index < prune_limit); - } - max_index_ = max_index; - prune_limit_ = prune_limit; -} - -void KAryHeap::sift_up(size_t leaf, heap_elem const& node) { - while ((leaf > 1) && (node.cost < heap_[parent(leaf)].cost)) { - // sift hole up - heap_[leaf] = heap_[parent(leaf)]; - leaf = parent(leaf); - } - - heap_[leaf] = node; -} - -void KAryHeap::expand_heap_if_full() { - if (heap_tail_ >= heap_size_) { /* Heap is full */ - heap_size_ *= 2; - heap_.resize(heap_size_ + 1); - } -} - -// adds an element to the back of heap and expand if necessary, but does not maintain heap property -void KAryHeap::push_back(t_heap* const hptr) { - expand_heap_if_full(); - - heap_elem new_elem = {hptr, hptr->cost}; - heap_[heap_tail_] = new_elem; - ++heap_tail_; - - check_prune_limit(); -} - -void KAryHeap::free_all_memory() { - if (!heap_.empty()) { - empty_heap(); - // coverity[offset_free : Intentional] - heap_.clear(); - } - - // heap_ = nullptr; /* Defensive coding: crash hard if I use these. */ - storage_.free_all_memory(); -} - -bool KAryHeap::check_prune_limit() { - if (heap_tail_ > prune_limit_) { - prune_heap(); - return true; - } - - return false; -} - -void KAryHeap::prune_heap() { - VTR_ASSERT(max_index_ < prune_limit_); - - heap_elem blank_elem = {nullptr, 0.0}; - std::vector best_heap_item(max_index_, blank_elem); - - // Find the cheapest instance of each index and store it. - for (size_t i = 1; i < heap_tail_; i++) { - if (heap_[i].elem_ptr == nullptr) { - continue; - } - - if (!heap_[i].elem_ptr->index.is_valid()) { - free(heap_[i].elem_ptr); - heap_[i].elem_ptr = nullptr; - continue; - } - - auto idx = size_t(heap_[i].elem_ptr->index); - - VTR_ASSERT(idx < max_index_); - - if (best_heap_item[idx].elem_ptr == nullptr || best_heap_item[idx].cost > heap_[i].cost) { - best_heap_item[idx] = heap_[i]; - } - } - - // Free unused nodes. - for (size_t i = 1; i < heap_tail_; i++) { - if (heap_[i].elem_ptr == nullptr) { - continue; - } - - auto idx = size_t(heap_[i].elem_ptr->index); - - if (best_heap_item[idx].elem_ptr != heap_[i].elem_ptr) { - free(heap_[i].elem_ptr); - heap_[i].elem_ptr = nullptr; - } - } - - heap_tail_ = 1; - - for (size_t i = 0; i < max_index_; ++i) { - if (best_heap_item[i].elem_ptr != nullptr) { - heap_[heap_tail_++] = best_heap_item[i]; - } - } -} diff --git a/vpr/src/route/k_ary_heap.h b/vpr/src/route/k_ary_heap.h deleted file mode 100644 index fb0e8763fdf..00000000000 --- a/vpr/src/route/k_ary_heap.h +++ /dev/null @@ -1,125 +0,0 @@ -#ifndef VTR_K_ARY_HEAP_H -#define VTR_K_ARY_HEAP_H - -#include "heap_type.h" -#include - -/** - * @brief Abstract class whose children are HeapInterface implementations of a k-ary minheap. - */ -class KAryHeap : public HeapInterface { - public: - KAryHeap(); - ~KAryHeap(); - - t_heap* alloc() final; - void free(t_heap* hptr) final; - - void init_heap(const DeviceGrid& grid) final; - void add_to_heap(t_heap* hptr) final; - void push_back(t_heap* const hptr) final; - bool is_empty_heap() const final; - void empty_heap() final; - void build_heap() final; - void set_prune_limit(size_t max_index, size_t prune_limit) final; - void free_all_memory() final; - - virtual bool is_valid() const = 0; - virtual t_heap* get_heap_head() = 0; - - protected: - /** - * @brief The struct which the heap_ vector contains. - * - * @details - * Previously, heap_ was made of only t_heap pointers. This meant that - * all comparisons required dereferencing to attain the element's cost. - * Now, the cost is attained by dereferencing only once in add_to_heap(). - * This resulted in a slightly larger memory footprint but a ~1.4% runtime - * improvement. - * - * @param elem_ptr A pointer to the t_heap struct which contains all - * the node's information. - * @param cost The cost of the node. - * - * @todo - * We are currently storing the node cost in two places (in elem_ptr->cost and cost). This might be fixed in two ways:
- * 1. Don't store the cost in t_heap.
- * 2. Instead of using pointers, use a 32-bit ID. If we do this, we can create a new 8-ary heap, which is likely to be even - * faster as we can fit more heap_elem on one cache line (currently, we can fit 5 as heap_elem is 12 bytes), even with more - * comparisons. - */ - struct heap_elem { - t_heap* elem_ptr; - float cost; - }; - - /** - * @return The number of elements in the heap. - */ - size_t size() const; - - /** - * @brief Sift node up until it satisfies minheap property. - * - * @details - * O(lgn) sifting up to maintain heap property after insertion (should sift - * own when building heap) - * - * @param leaf The heap leaf where node currently resides. - * @param node The node to be sifted up. - */ - void sift_up(size_t leaf, heap_elem const& node); - - /** - * @brief Expands heap by 2 times if it is full. - */ - void expand_heap_if_full(); - - /** - * @brief If the size of the heap is greater than the prune limit, prune the heap. - * - * @return Whether the heap was pruned. - */ - bool check_prune_limit(); - - /** - * @brief Prune the heap. - */ - void prune_heap(); - - /** - * @brief Make a heap rooted at index hole by **sifting down** in O(lgn) time - * - * @param hole - */ - virtual void sift_down(size_t hole) = 0; - - /** - * @param i Heap child node. - * - * @return Heap parent node. - */ - virtual size_t parent(size_t i) const = 0; - - HeapStorage storage_; - - /** - * @details - * heap_ is indexed from [1..heap_size]; the 0th element is unused. For BinaryHeap, this simplifies - * arithmetic in left() and parent() functions. Using a heap beginning at index 0 would simplify - * first_child() and parent() functions in FourAryHeap, but this does not improve runtime. - * - * @todo - * If an 8-ary heap is implemented, experiment with starting at index 0 - */ - std::vector heap_; - - size_t heap_size_; /* Number of slots in the heap array */ - size_t heap_tail_; /* Index of first unused slot in the heap array */ - - size_t max_index_; - size_t prune_limit_; -}; - -#endif // VTR_K_ARY_HEAP_H diff --git a/vpr/src/route/netlist_routers.h b/vpr/src/route/netlist_routers.h index 448e4f7f76c..d5f5354a392 100644 --- a/vpr/src/route/netlist_routers.h +++ b/vpr/src/route/netlist_routers.h @@ -16,9 +16,6 @@ * of this interface. */ #include "NetPinTimingInvalidator.h" -#include "binary_heap.h" -#include "four_ary_heap.h" -#include "bucket.h" #include "clustered_netlist_utils.h" #include "connection_based_routing_fwd.h" #include "connection_router.h" @@ -182,20 +179,6 @@ inline std::unique_ptr make_netlist_router( routing_predictor, choking_spots, is_flat); - } else if (router_opts.router_heap == e_heap_type::BUCKET_HEAP_APPROXIMATION) { - return make_netlist_router_with_heap( - net_list, - router_lookahead, - router_opts, - connections_inf, - net_delay, - netlist_pin_lookup, - timing_info, - pin_timing_invalidator, - budgeting_inf, - routing_predictor, - choking_spots, - is_flat); } else { VPR_FATAL_ERROR(VPR_ERROR_ROUTE, "Unknown heap type %d", router_opts.router_heap); } diff --git a/vpr/src/route/route_common.cpp b/vpr/src/route/route_common.cpp index b72b78cdaf1..45acd9b5b91 100644 --- a/vpr/src/route/route_common.cpp +++ b/vpr/src/route/route_common.cpp @@ -780,7 +780,7 @@ void reserve_locally_used_opins(HeapInterface* heap, float pres_fac, float acc_f int num_local_opin, iconn, num_edges; int iclass, ipin; float cost; - t_heap* heap_head_ptr; + HeapNode heap_head_node; t_physical_tile_type_ptr type; auto& cluster_ctx = g_vpr_ctx.clustering(); @@ -838,22 +838,21 @@ void reserve_locally_used_opins(HeapInterface* heap, float pres_fac, float acc_f //Add the OPIN to the heap according to it's congestion cost cost = get_rr_cong_cost(to_node, pres_fac); - add_node_to_heap(heap, route_ctx.rr_node_route_inf, - to_node, cost, RREdgeId::INVALID(), - 0., 0.); + if (cost < route_ctx.rr_node_route_inf[to_node].path_cost) { + heap->add_to_heap({cost, to_node}); + } } for (ipin = 0; ipin < num_local_opin; ipin++) { //Pop the nodes off the heap. We get them from the heap so we //reserve those pins with lowest congestion cost first. - heap_head_ptr = heap->get_heap_head(); - RRNodeId inode(heap_head_ptr->index); + VTR_ASSERT(heap->try_pop(heap_head_node)); + const RRNodeId& inode = heap_head_node.node; VTR_ASSERT(rr_graph.node_type(inode) == OPIN); adjust_one_rr_occ_and_acc_cost(inode, 1, acc_fac); route_ctx.clb_opins_used_locally[blk_id][iclass][ipin] = inode; - heap->free(heap_head_ptr); } heap->empty_heap(); diff --git a/vpr/src/route/route_common.h b/vpr/src/route/route_common.h index 69b8bfb136a..1d6bfb58082 100644 --- a/vpr/src/route/route_common.h +++ b/vpr/src/route/route_common.h @@ -144,98 +144,3 @@ float get_cost_from_lookahead(const RouterLookahead& router_lookahead, float R_upstream, const t_conn_cost_params cost_params, bool is_flat); - -/* Creates a new t_heap object to be placed on the heap, if the new cost * - * given is lower than the current path_cost to this channel segment. The * - * index of its predecessor is stored to make traceback easy. The index of * - * the edge used to get from its predecessor to it is also stored to make * - * timing analysis, etc. * - * * - * Returns t_heap suitable for adding to heap or nullptr if node is more * - * expensive than previously explored path. */ -template -t_heap* prepare_to_add_node_to_heap( - T* heap, - const RouteInf& rr_node_route_inf, - RRNodeId inode, - float total_cost, - RREdgeId prev_edge, - float backward_path_cost, - float R_upstream) { - if (total_cost >= rr_node_route_inf[inode].path_cost) - return nullptr; - - t_heap* hptr = heap->alloc(); - - hptr->index = inode; - hptr->cost = total_cost; - hptr->set_prev_edge(prev_edge); - hptr->backward_path_cost = backward_path_cost; - hptr->R_upstream = R_upstream; - return hptr; -} - -/* Puts an rr_node on the heap if it is the cheapest path. */ -template -void add_node_to_heap( - T* heap, - const RouteInf& rr_node_route_inf, - RRNodeId inode, - float total_cost, - RREdgeId prev_edge, - float backward_path_cost, - float R_upstream) { - t_heap* hptr = prepare_to_add_node_to_heap( - heap, - rr_node_route_inf, inode, total_cost, - prev_edge, backward_path_cost, R_upstream); - if (hptr) { - heap->add_to_heap(hptr); - } -} - -// /* Puts an rr_node on the heap with the same condition as add_node_to_heap, -// * but do not fix heap property yet as that is more efficiently done from -// * bottom up with build_heap */ -// template -// void push_back_node( -// T* heap, -// const RouteInf& rr_node_route_inf, -// RRNodeId inode, -// float total_cost, -// RREdgeId prev_edge, -// float backward_path_cost, -// float R_upstream) { -// t_heap* hptr = prepare_to_add_node_to_heap( -// heap, -// rr_node_route_inf, inode, total_cost, prev_edge, -// backward_path_cost, R_upstream); -// if (hptr) { -// heap->push_back(hptr); -// } -// } - -// /* Puts an rr_node on the heap with the same condition as node_to_heap, -// * but do not fix heap property yet as that is more efficiently done from -// * bottom up with build_heap. Certain information is also added */ -// template -// void push_back_node_with_info( -// T* heap, -// RRNodeId inode, -// float total_cost, -// float backward_path_cost, -// float R_upstream, -// float backward_path_delay, -// PathManager* rcv_path_manager) { -// t_heap* hptr = heap->alloc(); -// rcv_path_manager->alloc_path_struct(hptr->path_data); - -// hptr->index = inode; -// hptr->cost = total_cost; -// hptr->backward_path_cost = backward_path_cost; -// hptr->R_upstream = R_upstream; - -// hptr->path_data->backward_delay = backward_path_delay; - -// heap->push_back(hptr); -// } diff --git a/vpr/src/route/router_delay_profiling.h b/vpr/src/route/router_delay_profiling.h index bda721e1a24..1d5ae1b21c1 100644 --- a/vpr/src/route/router_delay_profiling.h +++ b/vpr/src/route/router_delay_profiling.h @@ -2,8 +2,6 @@ #define ROUTER_DELAY_PROFILING_H_ #include "vpr_types.h" -#include "binary_heap.h" -#include "four_ary_heap.h" #include "connection_router.h" #include From d307ea037b7202170934e7e34753dd79fdd705cb Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Tue, 17 Sep 2024 11:33:27 -0400 Subject: [PATCH 05/14] [Router] Refactored `t_heap` to `RTExploredNode` The `t_heap` data structure is no longer needed as the "heap node structure" due to the algorithmic changes in the connection router in commit b11b2eb. However, `t_heap` is used in many places as a holder for the return values of the route routines. This commit refactored the `t_heap`, renamed it to `RTExploredNode`, and combined it with the other similar node info data structure, `node_t`, in the connection router to fit the changes since commit b11b2eb. --- doc/src/api/vpr/route_tree.rst | 7 +++ doc/src/api/vprinternals/router_heap.rst | 21 +------ utils/route_diag/src/main.cpp | 2 +- vpr/src/route/connection_router.cpp | 64 +++++++++---------- vpr/src/route/connection_router.h | 57 ++++++----------- vpr/src/route/connection_router_interface.h | 10 +-- vpr/src/route/heap_type.h | 68 --------------------- vpr/src/route/route_net.tpp | 4 +- vpr/src/route/route_path_manager.h | 31 +++++----- vpr/src/route/route_tree.cpp | 12 ++-- vpr/src/route/route_tree.h | 38 +++++++++++- vpr/src/route/route_tree_fwd.h | 1 + vpr/src/route/router_delay_profiling.cpp | 4 +- vpr/test/test_connection_router.cpp | 2 +- 14 files changed, 128 insertions(+), 193 deletions(-) diff --git a/doc/src/api/vpr/route_tree.rst b/doc/src/api/vpr/route_tree.rst index 7be12dda86a..8515381bac7 100644 --- a/doc/src/api/vpr/route_tree.rst +++ b/doc/src/api/vpr/route_tree.rst @@ -20,3 +20,10 @@ RouteTreeNode .. doxygenclass:: RouteTreeNode :project: vpr :members: + +RTExploredNode +------------- + +.. doxygenclass:: RTExploredNode + :project: vpr + :members: diff --git a/doc/src/api/vprinternals/router_heap.rst b/doc/src/api/vprinternals/router_heap.rst index cb652811e6c..1d213379a89 100644 --- a/doc/src/api/vprinternals/router_heap.rst +++ b/doc/src/api/vprinternals/router_heap.rst @@ -2,30 +2,13 @@ Router Heap ============== -t_heap ----------- -.. doxygenstruct:: t_heap - :project: vpr - :members: - HeapInterface ---------- .. doxygenclass:: HeapInterface :project: vpr :members: -HeapStorage ----------- -.. doxygenclass:: HeapStorage - :project: vpr - :members: - -KAryHeap +DAryHeap ---------- -.. doxygenclass:: KAryHeap +.. doxygenclass:: DAryHeap :project: vpr - -FourAryHeap ----------- -.. doxygenclass:: FourAryHeap - :project: vpr \ No newline at end of file diff --git a/utils/route_diag/src/main.cpp b/utils/route_diag/src/main.cpp index 7b9c170fbe7..d0a6ff6034e 100644 --- a/utils/route_diag/src/main.cpp +++ b/utils/route_diag/src/main.cpp @@ -114,7 +114,7 @@ static void do_one_route(const Netlist<>& net_list, is_flat); enable_router_debug(router_opts, ParentNetId(), sink_node, 1, &router); bool found_path; - t_heap cheapest; + RTExploredNode cheapest; ConnectionParameters conn_params(ParentNetId::INVALID(), -1, false, diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index fa8bf47ba03..ccfd2acd9bb 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -22,7 +22,7 @@ static void update_router_stats(RouterStats* router_stats, /** return tuple */ template -std::tuple ConnectionRouter::timing_driven_route_connection_from_route_tree( +std::tuple ConnectionRouter::timing_driven_route_connection_from_route_tree( const RouteTreeNode& rt_root, RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -37,9 +37,11 @@ std::tuple ConnectionRouter::timing_driven_route_conne if (!std::isinf(rr_node_route_inf_[sink_node].path_cost)) { rcv_path_manager.update_route_tree_set(rcv_path_data[sink_node]); - t_heap out; // only the `index`, `prev_edge()`, and `path_data` fields of `out` are used after this function returns + // Only the `index`, `prev_edge`, and `rcv_path_backward_delay` fields of `out` + // are used after this function returns. + RTExploredNode out; out.index = sink_node; - out.set_prev_edge(rr_node_route_inf_[sink_node].prev_edge); + out.prev_edge = rr_node_route_inf_[sink_node].prev_edge; if (rcv_path_manager.is_enabled()) { out.rcv_path_backward_delay = rcv_path_data[sink_node]->backward_delay; } @@ -51,7 +53,7 @@ std::tuple ConnectionRouter::timing_driven_route_conne clear_modified_rr_node_info(); heap_.empty_heap(); rcv_path_manager.empty_heap(); - return std::make_tuple(false, retry, t_heap()); + return std::make_tuple(false, retry, RTExploredNode()); } } @@ -111,7 +113,7 @@ bool ConnectionRouter::timing_driven_route_connection_common_setup( // which is spatially close to the sink is added to the heap. // Returns a tuple of */ template -std::tuple ConnectionRouter::timing_driven_route_connection_from_route_tree_high_fanout( +std::tuple ConnectionRouter::timing_driven_route_connection_from_route_tree_high_fanout( const RouteTreeNode& rt_root, RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -131,7 +133,7 @@ std::tuple ConnectionRouter::timing_driven_route_conne if (heap_.is_empty_heap()) { VTR_LOG("No source in route tree: %s\n", describe_unrouteable_connection(source_node, sink_node, is_flat_).c_str()); - return std::make_tuple(false, false, t_heap()); + return std::make_tuple(false, false, RTExploredNode()); } VTR_LOGV_DEBUG(router_debug_, " Routing to %d as high fanout net (BB: %d,%d,%d x %d,%d,%d)\n", sink_node, @@ -164,13 +166,13 @@ std::tuple ConnectionRouter::timing_driven_route_conne heap_.empty_heap(); rcv_path_manager.empty_heap(); - return std::make_tuple(false, retry_with_full_bb, t_heap()); + return std::make_tuple(false, retry_with_full_bb, RTExploredNode()); } rcv_path_manager.update_route_tree_set(rcv_path_data[sink_node]); - t_heap out; + RTExploredNode out; out.index = sink_node; - out.set_prev_edge(rr_node_route_inf_[sink_node].prev_edge); + out.prev_edge = rr_node_route_inf_[sink_node].prev_edge; if (rcv_path_manager.is_enabled()) { out.rcv_path_backward_delay = rcv_path_data[sink_node]->backward_delay; } @@ -267,7 +269,7 @@ void ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeId s // Find shortest paths from specified route tree to all nodes in the RR graph template -vtr::vector ConnectionRouter::timing_driven_find_all_shortest_paths_from_route_tree( +vtr::vector ConnectionRouter::timing_driven_find_all_shortest_paths_from_route_tree( const RouteTreeNode& rt_root, const t_conn_cost_params& cost_params, const t_bb& bounding_box, @@ -295,10 +297,10 @@ vtr::vector ConnectionRouter::timing_driven_find_all_sho // Note that to re-use code used for the regular A*-based router we use a // no-operation lookahead which always returns zero. template -vtr::vector ConnectionRouter::timing_driven_find_all_shortest_paths_from_heap( +vtr::vector ConnectionRouter::timing_driven_find_all_shortest_paths_from_heap( const t_conn_cost_params& cost_params, const t_bb& bounding_box) { - vtr::vector cheapest_paths(rr_nodes_.size()); + vtr::vector cheapest_paths(rr_nodes_.size()); VTR_ASSERT_SAFE(heap_.is_valid()); @@ -332,13 +334,13 @@ vtr::vector ConnectionRouter::timing_driven_find_all_sho bounding_box, t_bb()); - if (cheapest_paths[inode].index == RRNodeId::INVALID() || cheapest_paths[inode].cost >= new_total_cost) { - VTR_LOGV_DEBUG(router_debug_, " Better cost to node %d: %g (was %g)\n", inode, new_total_cost, cheapest_paths[inode].cost); - // Only the `index` and `prev_edge()` fields of `cheapest_paths[inode]` are used after this function returns + if (cheapest_paths[inode].index == RRNodeId::INVALID() || cheapest_paths[inode].total_cost >= new_total_cost) { + VTR_LOGV_DEBUG(router_debug_, " Better cost to node %d: %g (was %g)\n", inode, new_total_cost, cheapest_paths[inode].total_cost); + // Only the `index` and `prev_edge` fields of `cheapest_paths[inode]` are used after this function returns cheapest_paths[inode].index = inode; - cheapest_paths[inode].set_prev_edge(rr_node_route_inf_[inode].prev_edge); + cheapest_paths[inode].prev_edge = rr_node_route_inf_[inode].prev_edge; } else { - VTR_LOGV_DEBUG(router_debug_, " Worse cost to node %d: %g (better %g)\n", inode, new_total_cost, cheapest_paths[inode].cost); + VTR_LOGV_DEBUG(router_debug_, " Worse cost to node %d: %g (better %g)\n", inode, new_total_cost, cheapest_paths[inode].total_cost); } } @@ -368,7 +370,8 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, // `new_total_cost` is used here as an identifier to detect if the pair // (from_node or inode, new_total_cost) was the most recently pushed // element for the corresponding node. - node_t current; + RTExploredNode current; + current.index = from_node; current.backward_path_cost = rr_node_route_inf_[from_node].backward_path_cost; current.prev_edge = rr_node_route_inf_[from_node].prev_edge; current.R_upstream = rr_node_R_upstream[from_node]; @@ -381,8 +384,7 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, static_cast(rr_graph_->edge_src_node(current.prev_edge)), static_cast(current.prev_edge)); - timing_driven_expand_neighbours(current, cost_params, bounding_box, from_node, - target_node, target_bb); + timing_driven_expand_neighbours(current, cost_params, bounding_box, target_node, target_bb); } else { // Post-heap prune, do not re-explore from the current/new partial path as it // has worse cost than the best partial path to this node found so far @@ -393,16 +395,15 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, } template -void ConnectionRouter::timing_driven_expand_neighbours(const node_t& current, +void ConnectionRouter::timing_driven_expand_neighbours(const RTExploredNode& current, const t_conn_cost_params& cost_params, const t_bb& bounding_box, - RRNodeId from_node, RRNodeId target_node, const t_bb& target_bb) { /* Puts all the rr_nodes adjacent to current on the heap. */ // For each node associated with the current heap element, expand all of it's neighbors - auto edges = rr_nodes_.edge_range(from_node); + auto edges = rr_nodes_.edge_range(current.index); // This is a simple prefetch that prefetches: // - RR node data reachable from this node @@ -432,7 +433,6 @@ void ConnectionRouter::timing_driven_expand_neighbours(const node_t& curre for (RREdgeId from_edge : edges) { RRNodeId to_node = rr_nodes_.edge_sink_node(from_edge); timing_driven_expand_neighbour(current, - from_node, from_edge, to_node, cost_params, @@ -446,8 +446,7 @@ void ConnectionRouter::timing_driven_expand_neighbours(const node_t& curre // RR nodes outside the expanded bounding box specified in bounding_box are not added // to the heap. template -void ConnectionRouter::timing_driven_expand_neighbour(const node_t& current, - RRNodeId from_node, +void ConnectionRouter::timing_driven_expand_neighbour(const RTExploredNode& current, RREdgeId from_edge, RRNodeId to_node, const t_conn_cost_params& cost_params, @@ -456,6 +455,8 @@ void ConnectionRouter::timing_driven_expand_neighbour(const node_t& curren const t_bb& target_bb) { VTR_ASSERT(bounding_box.layer_max < g_vpr_ctx.device().grid.get_num_layers()); + const RRNodeId& from_node = current.index; + // BB-pruning // Disable BB-pruning if RCV is enabled, as this can make it harder for circuits with high negative hold slack to resolve this // TODO: Only disable pruning if the net has negative hold slack, maybe go off budgets @@ -521,7 +522,6 @@ void ConnectionRouter::timing_driven_expand_neighbour(const node_t& curren if (!node_exists || !rcv_path_manager.is_enabled()) { timing_driven_add_to_heap(cost_params, current, - from_node, to_node, from_edge, target_node); @@ -531,15 +531,15 @@ void ConnectionRouter::timing_driven_expand_neighbour(const node_t& curren // Add to_node to the heap, and also add any nodes which are connected by non-configurable edges template void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& cost_params, - const node_t& current, - RRNodeId from_node, + const RTExploredNode& current, RRNodeId to_node, const RREdgeId from_edge, RRNodeId target_node) { const auto& device_ctx = g_vpr_ctx.device(); + const RRNodeId& from_node = current.index; // Initialized to current - node_t next; + RTExploredNode next; next.R_upstream = current.R_upstream; next.prev_edge = from_edge; next.total_cost = std::numeric_limits::infinity(); // Not used directly @@ -566,7 +566,7 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& float new_total_cost = next.total_cost; float new_back_cost = next.backward_path_cost; - if (best_back_cost > new_back_cost) { // TODO: double check the correctness of expansion condition with RCV + if (best_back_cost > new_back_cost) { // TODO: double check the performance of expansion condition VTR_LOGV_DEBUG(router_debug_, " Expanding to node %d (%s)\n", to_node, describe_rr_node(device_ctx.rr_graph, device_ctx.grid, @@ -682,7 +682,7 @@ void ConnectionRouter::set_rcv_enabled(bool enable) { //Calculates the cost of reaching to_node template -void ConnectionRouter::evaluate_timing_driven_node_costs(node_t* to, +void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* to, const t_conn_cost_params& cost_params, RRNodeId from_node, RRNodeId to_node, diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index 10e6b7a5e8f..0dd3fde4032 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -12,20 +12,7 @@ #include "d_ary_heap.h" -// `node_t` is a simplified version of `t_heap`, and is used as a bundle of node -// information in the functions inside the routing loop. -struct node_t { - float total_cost; - float backward_path_cost; - float R_upstream; - RREdgeId prev_edge; - t_heap_path* path_data; -}; - -// Prune the heap when it contains 4x the number of nodes in the RR graph. -// constexpr size_t kHeapPruneFactor = 4; - -// This class encapsolates the timing driven connection router. This class +// This class encapsulates the timing driven connection router. This class // routes from some initial set of sources (via the input rt tree) to a // particular sink. // @@ -94,8 +81,8 @@ class ConnectionRouter : public ConnectionRouterInterface { * Returns a tuple of: * bool: path exists? (hard failure, rr graph disconnected) * bool: should retry with full bounding box? (only used in parallel routing) - * t_heap: heap element of cheapest path */ - std::tuple timing_driven_route_connection_from_route_tree( + * RTExploredNode: the explored sink node with the cheapest path */ + std::tuple timing_driven_route_connection_from_route_tree( const RouteTreeNode& rt_root, RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -112,8 +99,8 @@ class ConnectionRouter : public ConnectionRouterInterface { * Returns a tuple of: * bool: path exists? (hard failure, rr graph disconnected) * bool: should retry with full bounding box? (only used in parallel routing) - * t_heap: heap element of cheapest path */ - std::tuple timing_driven_route_connection_from_route_tree_high_fanout( + * RTExploredNode: the explored sink node with the cheapest path */ + std::tuple timing_driven_route_connection_from_route_tree_high_fanout( const RouteTreeNode& rt_root, RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -131,7 +118,7 @@ class ConnectionRouter : public ConnectionRouterInterface { // Dijkstra's algorithm with a modified exit condition (runs until heap is // empty). When using cost_params.astar_fac = 0, for efficiency the // RouterLookahead used should be the NoOpLookahead. - vtr::vector timing_driven_find_all_shortest_paths_from_route_tree( + vtr::vector timing_driven_find_all_shortest_paths_from_route_tree( const RouteTreeNode& rt_root, const t_conn_cost_params& cost_params, const t_bb& bounding_box, @@ -163,11 +150,11 @@ class ConnectionRouter : public ConnectionRouterInterface { } // Update the route path to the node pointed to by cheapest. - inline void update_cheapest(const node_t& cheapest, RRNodeId inode) { + inline void update_cheapest(const RTExploredNode& cheapest, RRNodeId inode) { update_cheapest(cheapest, inode, &rr_node_route_inf_[inode]); } - inline void update_cheapest(const node_t& cheapest, RRNodeId inode, t_rr_node_route_inf* route_inf) { + inline void update_cheapest(const RTExploredNode& cheapest, RRNodeId inode, t_rr_node_route_inf* route_inf) { //Record final link to target add_to_mod_list(inode); @@ -183,8 +170,7 @@ class ConnectionRouter : public ConnectionRouterInterface { * @param[in] sink_node Sink node ID to route to * @param[in] cost_params * @param[in] bounding_box Keep search confined to this bounding box - * @return bool Signal to retry this connection with a full-device bounding box, - * @return t_heap* Heap element describing the path found. */ + * @return bool Signal to retry this connection with a full-device bounding box */ bool timing_driven_route_connection_common_setup( const RouteTreeNode& rt_root, RRNodeId sink_node, @@ -197,9 +183,6 @@ class ConnectionRouter : public ConnectionRouterInterface { // This is the core maze routing routine. // // Note: For understanding the connection router, start here. - // - // Returns either the last element of the path, or nullptr if no path is - // found void timing_driven_route_connection_from_heap( RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -216,21 +199,19 @@ class ConnectionRouter : public ConnectionRouterInterface { // Expand each neighbor of the current node. void timing_driven_expand_neighbours( - const node_t& current, + const RTExploredNode& current, const t_conn_cost_params& cost_params, const t_bb& bounding_box, - RRNodeId from_node, RRNodeId target_node, const t_bb& target_bb); - // Conditionally adds to_node to the router heap (via path from from_node + // Conditionally adds to_node to the router heap (via path from current.index // via from_edge). // // RR nodes outside bounding box specified in bounding_box are not added // to the heap. void timing_driven_expand_neighbour( - const node_t& current, - RRNodeId from_node, + const RTExploredNode& current, RREdgeId from_edge, RRNodeId to_node, const t_conn_cost_params& cost_params, @@ -242,15 +223,14 @@ class ConnectionRouter : public ConnectionRouterInterface { // non-configurable edges void timing_driven_add_to_heap( const t_conn_cost_params& cost_params, - const node_t& current, - RRNodeId from_node, + const RTExploredNode& current, RRNodeId to_node, RREdgeId from_edge, RRNodeId target_node); // Calculates the cost of reaching to_node void evaluate_timing_driven_node_costs( - node_t* to, + RTExploredNode* to, const t_conn_cost_params& cost_params, RRNodeId from_node, RRNodeId to_node, @@ -258,7 +238,7 @@ class ConnectionRouter : public ConnectionRouterInterface { RRNodeId target_node); // Find paths from current heap to all nodes in the RR graph - vtr::vector timing_driven_find_all_shortest_paths_from_heap( + vtr::vector timing_driven_find_all_shortest_paths_from_heap( const t_conn_cost_params& cost_params, const t_bb& bounding_box); @@ -315,12 +295,11 @@ class ConnectionRouter : public ConnectionRouterInterface { // Timing std::chrono::microseconds sssp_total_time{0}; - // Used only by the timing-driven router. Stores the upstream resistance to ground from this node, including the resistance - // of the node itself (device_ctx.rr_nodes[index].R). Since the `t_heap` is hardly used for heap node structure in the - // connection router anymore, the `R_upstream` field of the `t_heap` is kept inside the connection router class instead. + // Used only by the timing-driven router. Stores the upstream resistance to ground from each RR node, including the + // resistance of the node itself (device_ctx.rr_nodes[index].R). vtr::vector rr_node_R_upstream; - // The path manager for RCV, keeps track of the route tree as a set, also manages the allocation of the heap types + // The path manager for RCV, keeps track of the route tree as a set, also manages the allocation of `rcv_path_data` PathManager rcv_path_manager; vtr::vector rcv_path_data; }; diff --git a/vpr/src/route/connection_router_interface.h b/vpr/src/route/connection_router_interface.h index b732e8f839e..507bb2c67f3 100644 --- a/vpr/src/route/connection_router_interface.h +++ b/vpr/src/route/connection_router_interface.h @@ -52,8 +52,8 @@ class ConnectionRouterInterface { * Returns a tuple of: * bool: path exists? (hard failure, rr graph disconnected) * bool: should retry with full bounding box? - * t_heap: heap element of cheapest path */ - virtual std::tuple timing_driven_route_connection_from_route_tree( + * RTExploredNode: the explored sink node with the cheapest path */ + virtual std::tuple timing_driven_route_connection_from_route_tree( const RouteTreeNode& rt_root, RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -71,8 +71,8 @@ class ConnectionRouterInterface { * Returns a tuple of: * bool: path exists? (hard failure, rr graph disconnected) * bool: should retry with full bounding box? - * t_heap: heap element of cheapest path */ - virtual std::tuple timing_driven_route_connection_from_route_tree_high_fanout( + * RTExploredNode: the explored sink node with the cheapest path */ + virtual std::tuple timing_driven_route_connection_from_route_tree_high_fanout( const RouteTreeNode& rt_root, RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -91,7 +91,7 @@ class ConnectionRouterInterface { // Dijkstra's algorithm with a modified exit condition (runs until heap is // empty). When using cost_params.astar_fac = 0, for efficiency the // RouterLookahead used should be the NoOpLookahead. - virtual vtr::vector timing_driven_find_all_shortest_paths_from_route_tree( + virtual vtr::vector timing_driven_find_all_shortest_paths_from_route_tree( const RouteTreeNode& rt_root, const t_conn_cost_params& cost_params, const t_bb& bounding_box, diff --git a/vpr/src/route/heap_type.h b/vpr/src/route/heap_type.h index 00329e66636..dd722928bcc 100644 --- a/vpr/src/route/heap_type.h +++ b/vpr/src/route/heap_type.h @@ -9,74 +9,6 @@ #include "rr_graph_fwd.h" #include "route_path_manager.h" -/** - * @brief Used by the heap as its fundamental data structure. Each heap - * element represents a partial route. - */ -struct t_heap { - ///@brief The cost used to sort heap. For the timing-driven router this is the backward_path_cost + expected cost to the target. - float cost = 0.; - ///@brief The "known" cost of the path up to and including this node. Used only by the timing-driven router. In this case, the - ///.cost member contains not only the known backward cost but also an expected cost to the target. - float backward_path_cost = 0.; - ///@brief Used only by the timing-driven router. Stores the upstream resistance to ground from this node, including the resistance - /// of the node itself (device_ctx.rr_nodes[index].R). - float R_upstream = 0.; - ///@brief The RR node index associated with the costs/R_upstream values. - RRNodeId index = RRNodeId::INVALID(); - ///@brief The delay of the partial path plus the path from route tree to source. Needed by RCV. Set to infinity if RCV is disabled - float rcv_path_backward_delay = std::numeric_limits::infinity(); - - /** - * @brief Get the next t_heap item in the linked list. - */ - t_heap* next_heap_item() const { - return u.next; - } - - /** - * @brief Set the next t_heap item in the linked list. - */ - void set_next_heap_item(t_heap* next) { - u.next = next; - } - - /** - * @brief Get the edge from the previous node used to reach the current node. - * - * @note - * Be careful: will return 0 (a valid id!) if uninitialized. - */ - constexpr RREdgeId prev_edge() const { - static_assert(sizeof(uint32_t) == sizeof(RREdgeId)); - return RREdgeId(u.prev_edge); - } - - /** - * @brief Set the edge from the previous node used to reach the current node.. - */ - inline void set_prev_edge(RREdgeId edge) { - static_assert(sizeof(uint32_t) == sizeof(RREdgeId)); - u.prev_edge = size_t(edge); - } - - private: - union { - ///@brief Pointer to the next t_heap structure in the free linked list. - t_heap* next = nullptr; - - /** - * @brief The edge from the previous node used to reach the current. Not used when on the heap. - * - * @note - * The previous edge is not a StrongId for performance & brevity - * reasons: StrongIds can't be trivially placed into an anonymous - * union. - */ - uint32_t prev_edge; - } u; -}; - using HeapNodePriority = float; using HeapNodeId = RRNodeId; // Ensure that the heap node structure occupies only 64 bits to make the heap cache-friendly diff --git a/vpr/src/route/route_net.tpp b/vpr/src/route/route_net.tpp index 3815358d9f9..a3313774498 100644 --- a/vpr/src/route/route_net.tpp +++ b/vpr/src/route/route_net.tpp @@ -313,7 +313,7 @@ inline NetResultFlags pre_route_to_clock_root(ConnectionRouter& router, router.clear_modified_rr_node_info(); bool found_path, retry_with_full_bb; - t_heap cheapest; + RTExploredNode cheapest; ConnectionParameters conn_params(net_id, -1, false, @@ -428,7 +428,7 @@ inline NetResultFlags route_sink(ConnectionRouter& router, router.clear_modified_rr_node_info(); bool found_path; - t_heap cheapest; + RTExploredNode cheapest; bool net_is_global = net_list.net_is_global(net_id); bool high_fanout = is_high_fanout(net_list.net_sinks(net_id).size(), router_opts.high_fanout_threshold); diff --git a/vpr/src/route/route_path_manager.h b/vpr/src/route/route_path_manager.h index c3f69980b67..f1673772193 100644 --- a/vpr/src/route/route_path_manager.h +++ b/vpr/src/route/route_path_manager.h @@ -6,19 +6,19 @@ #include #ifndef _PATH_MANAGER_H -# define _PATH_MANAGER_H +#define _PATH_MANAGER_H -/* Extra path data needed by RCV, seperated from t_heap struct for performance reasons +/* Extra path data needed by RCV, separated from RTExploredNode struct for performance reasons * Can be accessed by a pointer, won't be initialized unless by RCV * Use PathManager class to handle this structure's allocation and deallocation * * path_rr: The entire partial path up until the route tree with the first node being the SOURCE, - * or a part of the route tree that already exists for this net - * + * or a part of the route tree that already exists for this net + * * edge: A list of edges from each node in the partial path to reach the next node - * + * * backward_delay: The delay of the partial path plus the path from route tree to source - * + * * backward_cong: The congestion estimate of the partial path plus the path from route tree to source */ struct t_heap_path { std::vector path_rr; @@ -33,24 +33,24 @@ struct RoutingContext; /* A class to manage the extra data required for RCV * It manages a set containing all the nodes that currently exist in the route tree * This class also manages the extra memory allocation required for the t_heap_path structure - * + * * When RCV is enabled, the router will not always be looking for minimal cost routing * This means nodes that already exist in the current path, or current route tree could be expanded twice. * This would result in electrically illegal loops (example below) - * + * * OPIN--|----| |-----------Sink 1 * | |--------X----| <--- The branch intersects with a previous routing * | | * |-------------| Sink 2 - * + * * To stop this, we keep track of the route tree (route_tree_nodes_), and each node keeps track of it's current partial routing up to the route tree * Before expanding a node, we check to see if it exists in either the route tree, or the current partial path to eliminate these scenarios - * - * - * The t_heap_path structure was created to isolate the RCV specific data from the t_heap struct - * Having these in t_heap creates significant performance issues when RCV is disabled - * A t_heap_path pointer is instead stored in t_heap, which is selectively allocated only when RCV is enabled - * + * + * + * The t_heap_path structure was created to isolate the RCV specific data from the RTExploredNode struct + * Having these in RTExploredNode creates significant performance issues when RCV is disabled + * A t_heap_path pointer is instead stored in RTExploredNode, which is selectively allocated only when RCV is enabled + * * If the _is_enabled flag is true, alloc_path_struct allocates t_heap_path structures, otherwise will be a NOOP */ class PathManager { public: @@ -92,7 +92,6 @@ class PathManager { // Put all currently allocated structures into the free_nodes list // This currently does NOT invalidate them - // Ideally used before a t_heap empty_heap() call void empty_heap(); // Clear the route tree nodes set, before moving onto the next net diff --git a/vpr/src/route/route_tree.cpp b/vpr/src/route/route_tree.cpp index daf21bd1eb8..799fa185fbd 100644 --- a/vpr/src/route/route_tree.cpp +++ b/vpr/src/route/route_tree.cpp @@ -478,15 +478,15 @@ void RouteTree::print(void) const { /** Add the most recently finished wire segment to the routing tree, and * update the Tdel, etc. numbers for the rest of the routing tree. hptr - * is the heap pointer of the SINK that was reached, and target_net_pin_index + * is the pointer of the SINK that was reached/explored, and target_net_pin_index * is the net pin index corresponding to the SINK that was reached. Usually target_net_pin_index * is a non-negative integer indicating the netlist connection being routed, but it can be OPEN (-1) - * to indicate this is a routing path to a virtual sink which we use when routing to the source of - * dedicated clock networks. + * to indicate this is a routing path to a virtual sink which we use when routing to the source of + * dedicated clock networks. * This routine returns a tuple: RouteTreeNode of the branch it adds to the route tree and * RouteTreeNode of the SINK it adds to the routing. */ std::tuple, vtr::optional> -RouteTree::update_from_heap(t_heap* hptr, int target_net_pin_index, SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat) { +RouteTree::update_from_heap(RTExploredNode* hptr, int target_net_pin_index, SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat) { /* Lock the route tree for writing. At least on Linux this shouldn't have an impact on single-threaded code */ std::unique_lock write_lock(_write_mutex); @@ -515,7 +515,7 @@ RouteTree::update_from_heap(t_heap* hptr, int target_net_pin_index, SpatialRoute * to the SINK indicated by hptr. Returns the first (most upstream) new rt_node, * and the rt_node of the new SINK. Traverses up from SINK */ std::tuple, vtr::optional> -RouteTree::add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is_flat) { +RouteTree::add_subtree_from_heap(RTExploredNode* hptr, int target_net_pin_index, bool is_flat) { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); @@ -534,7 +534,7 @@ RouteTree::add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is * Here we create two vectors: * new_branch_inodes: [sink, nodeN-1, nodeN-2, ... node 1] of length N * and new_branch_iswitches: [N-1->sink, N-2->N-1, ... 2->1, 1->found_node] of length N */ - RREdgeId edge = hptr->prev_edge(); + RREdgeId edge = hptr->prev_edge; RRNodeId new_inode = rr_graph.edge_src_node(edge); RRSwitchId new_iswitch = RRSwitchId(rr_graph.rr_nodes().edge_switch(edge)); diff --git a/vpr/src/route/route_tree.h b/vpr/src/route/route_tree.h index 4991d57f301..841df13cdaf 100644 --- a/vpr/src/route/route_tree.h +++ b/vpr/src/route/route_tree.h @@ -323,6 +323,40 @@ class RouteTreeNode { /** fwd definition for compatibility class in old_traceback.h */ class TracebackCompat; +/** + * @brief Each RTExploredNode element stores the node states for the connection router and represents a partial route. + * + * @note Only `index`, `prev_edge`, and `rcv_path_backward_delay` fields are used as the return value outside the connection router. + */ +class RTExploredNode { + public: + /* Used inside the connection router */ + + ///@brief The cost used to sort heap. For the timing-driven router this is the backward_path_cost + expected cost to the target. + float total_cost = 0.; + ///@brief The "known" cost of the path up to and including this node. Used only by the timing-driven router. In this case, the + ///.cost member contains not only the known backward cost but also an expected cost to the target. + float backward_path_cost; + ///@brief Used only by the timing-driven router. Stores the upstream resistance to ground from this node, including the resistance + /// of the node itself (device_ctx.rr_nodes[index].R). + float R_upstream; + ///@brief Structure to handle extra RCV structures. Managed by PathManager class. + t_heap_path* path_data; + + /* Used outside the connection router as the return values (`index` and `prev_edge` are also used inside the router). */ + + ///@brief The RR node index associated with the costs/R_upstream values. + RRNodeId index = RRNodeId::INVALID(); + ///@brief The edge from the previous node used to reach the current. + RREdgeId prev_edge = RREdgeId::INVALID(); + ///@brief The delay of the partial path plus the path from route tree to source. + /// Needed by RCV. Set to infinity if RCV is disabled. This field is used as part + /// of the return value of the route routine, derived from the `path_data` pointer + /// (but not using `path_data` for returning to avoid issues with dynamic memory + /// management). + float rcv_path_backward_delay = std::numeric_limits::infinity(); +}; + /** * @brief Top level route tree used in timing analysis and keeping routing state. * @@ -357,7 +391,7 @@ class RouteTree { * RouteTreeNode of the SINK it adds to the routing. * Locking operation: only one thread can update_from_heap() a RouteTree at a time. */ std::tuple, vtr::optional> - update_from_heap(t_heap* hptr, int target_net_pin_index, SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat); + update_from_heap(RTExploredNode* hptr, int target_net_pin_index, SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat); /** Reload timing values (R_upstream, C_downstream, Tdel). * Can take a RouteTreeNode& to do an incremental update. @@ -491,7 +525,7 @@ class RouteTree { private: std::tuple, vtr::optional> - add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is_flat); + add_subtree_from_heap(RTExploredNode* hptr, int target_net_pin_index, bool is_flat); void add_non_configurable_nodes(RouteTreeNode* rt_node, bool reached_by_non_configurable_edge, diff --git a/vpr/src/route/route_tree_fwd.h b/vpr/src/route/route_tree_fwd.h index 61b61ae739d..6f48247ef30 100644 --- a/vpr/src/route/route_tree_fwd.h +++ b/vpr/src/route/route_tree_fwd.h @@ -4,3 +4,4 @@ class RouteTree; class RouteTreeNode; +class RTExploredNode; diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index e37744ab70a..ae25d5cdf78 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -97,7 +97,7 @@ bool RouterDelayProfiler::calculate_delay(RRNodeId source_node, RouterStats router_stats; bool found_path; - t_heap cheapest; + RTExploredNode cheapest; ConnectionParameters conn_params(ParentNetId::INVALID(), -1, false, @@ -186,7 +186,7 @@ vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src is_flat); RouterStats router_stats; ConnectionParameters conn_params(ParentNetId::INVALID(), OPEN, false, std::unordered_map()); - vtr::vector shortest_paths = router.timing_driven_find_all_shortest_paths_from_route_tree(tree.root(), + vtr::vector shortest_paths = router.timing_driven_find_all_shortest_paths_from_route_tree(tree.root(), cost_params, bounding_box, router_stats, diff --git a/vpr/test/test_connection_router.cpp b/vpr/test/test_connection_router.cpp index 1bc208bf3ba..e2c6477d671 100644 --- a/vpr/test/test_connection_router.cpp +++ b/vpr/test/test_connection_router.cpp @@ -67,7 +67,7 @@ static float do_one_route(RRNodeId source_node, // Find the cheapest route if possible. bool found_path; - t_heap cheapest; + RTExploredNode cheapest; ConnectionParameters conn_params(ParentNetId::INVALID(), -1, false, From cb015ea5b867c37e9ba4c373adcfbc2daaee2ad4 Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Thu, 19 Sep 2024 16:40:01 -0400 Subject: [PATCH 06/14] [Router] Added YOYO Routing Budgets Algorithm Option to the CLI and Docs The option to turn on the YOYO routing budgets algorithm (i.e., using RCV) was previously missing in both the VPR CLI and the documents, and this commit fixed the issues. Additionally, this commit added regression tests for the YOYO option. --- doc/src/vpr/command_line_usage.rst | 6 ++-- vpr/src/base/read_options.cpp | 2 +- vpr/src/route/connection_router.h | 1 - .../strong_yoyo_budgets/config/config.txt | 28 +++++++++++++++++++ .../vtr_reg_strong/task_list.txt | 1 + .../strong_yoyo_budgets/config/config.txt | 28 +++++++++++++++++++ .../vtr_reg_strong_odin/task_list.txt | 1 + 7 files changed, 63 insertions(+), 4 deletions(-) create mode 100644 vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_yoyo_budgets/config/config.txt create mode 100644 vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets/config/config.txt diff --git a/doc/src/vpr/command_line_usage.rst b/doc/src/vpr/command_line_usage.rst index 9bcf5bd2ac6..178a0b8e757 100644 --- a/doc/src/vpr/command_line_usage.rst +++ b/doc/src/vpr/command_line_usage.rst @@ -1376,7 +1376,7 @@ The following options are only valid when the router is in timing-driven mode (t **Default:** ``safe`` -.. option:: --routing_budgets_algorithm { disable | minimax | scale_delay } +.. option:: --routing_budgets_algorithm { disable | minimax | yoyo | scale_delay } .. warning:: Experimental @@ -1384,7 +1384,9 @@ The following options are only valid when the router is in timing-driven mode (t ``disable`` is used to disable the budget feature. This uses the default VPR and ignores hold time constraints. - ``minimax`` sets the minimum and maximum budgets by distributing the long path and short path slacks depending on the the current delay values. This uses the routing cost valleys and Minimax-PERT algorithm :cite:`minimax_pert,RCV_algorithm`. + ``minimax`` sets the minimum and maximum budgets by distributing the long path and short path slacks depending on the the current delay values. This uses the Minimax-PERT algorithm :cite:`minimax_pert`. + + ``yoyo`` allocates budgets using minimax algorithm (as above), and enables hold slack resolution in the router using the Routing Cost Valleys (RCV) algorithm :cite:`RCV_algorithm`. ``scale_delay`` has the minimum budgets set to 0 and the maximum budgets is set to the delay of a net scaled by the pin criticality (net delay/pin criticality). diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index 065a15ab13b..78ff044c3bb 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -272,7 +272,7 @@ struct RouteBudgetsAlgorithm { } std::vector default_choices() { - return {"minimax", "scale_delay", "disable"}; + return {"minimax", "yoyo", "scale_delay", "disable"}; } }; diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index 0dd3fde4032..f3c07510548 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -45,7 +45,6 @@ class ConnectionRouter : public ConnectionRouterInterface { , router_stats_(nullptr) , router_debug_(false) { heap_.init_heap(grid); - // heap_.set_prune_limit(rr_nodes_.size(), kHeapPruneFactor * rr_nodes_.size()); only_opin_inter_layer = (grid.get_num_layers() > 1) && inter_layer_connections_limited_to_opin(*rr_graph); rr_node_R_upstream.resize(rr_node_route_inf.size()); rcv_path_data.resize(rr_node_route_inf.size()); diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_yoyo_budgets/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_yoyo_budgets/config/config.txt new file mode 100644 index 00000000000..1637460a293 --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_yoyo_budgets/config/config.txt @@ -0,0 +1,28 @@ +############################################## +# Configuration file for running experiments +############################################## + +# Path to directory of circuits to use +circuits_dir=benchmarks/verilog + +# Path to directory of architectures to use +archs_dir=arch/timing + +# Add circuits to list to sweep +circuit_list_add=stereovision3.v + +# Add architectures to list to sweep +arch_list_add=k6_frac_N10_frac_chain_mem32K_40nm.xml + +# Parse info and how to parse +parse_file=vpr_fixed_chan_width.txt + +# How to parse QoR info +qor_parse_file=qor_fixed_chan_width.txt + +# Pass requirements +pass_requirements_file=pass_requirements_fixed_chan_width.txt + +# Script parameters +script_params = --routing_budgets_algorithm yoyo --route_chan_width 100 -sdc_file sdc/samples/stereovision3.sdc + diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt index 73f97a8867b..a107ef945b6 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt @@ -87,3 +87,4 @@ regression_tests/vtr_reg_strong/strong_timing_no_fail regression_tests/vtr_reg_strong/strong_noc regression_tests/vtr_reg_strong/strong_flat_router regression_tests/vtr_reg_strong/strong_routing_constraints +regression_tests/vtr_reg_strong/strong_yoyo_budgets diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets/config/config.txt new file mode 100644 index 00000000000..b82831c7b5c --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets/config/config.txt @@ -0,0 +1,28 @@ +############################################## +# Configuration file for running experiments +############################################## + +# Path to directory of circuits to use +circuits_dir=benchmarks/verilog + +# Path to directory of architectures to use +archs_dir=arch/timing + +# Add circuits to list to sweep +circuit_list_add=stereovision3.v + +# Add architectures to list to sweep +arch_list_add=k6_frac_N10_frac_chain_mem32K_40nm.xml + +# Parse info and how to parse +parse_file=vpr_fixed_chan_width.txt + +# How to parse QoR info +qor_parse_file=qor_fixed_chan_width.txt + +# Pass requirements +pass_requirements_file=pass_requirements_fixed_chan_width.txt + +# Script parameters +script_params = -start odin --routing_budgets_algorithm yoyo --route_chan_width 100 -sdc_file sdc/samples/stereovision3.sdc + diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt index 37eedf040f0..0f8a073fe72 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt @@ -82,3 +82,4 @@ regression_tests/vtr_reg_strong_odin/koios_test regression_tests/vtr_reg_strong_odin/koios_test_no_hb regression_tests/vtr_reg_strong_odin/strong_timing_fail regression_tests/vtr_reg_strong_odin/strong_timing_no_fail +regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets From 084fb5444b6c897fd0c431ca88ff2f17c855840a Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Mon, 23 Sep 2024 21:20:06 -0400 Subject: [PATCH 07/14] [Router] Fixed the Logging Issues and Reverted the Changes for RCV Tests Fixed the output of the SSSP time of the connection router, which caused VTR flow log parser issues and made CI mad. Reverted the changes for RCV tests, which are not working and appear to be too simple to be useful. It needs more time and effort to make a comprehensive set of regression tests for the RCV technique. We tend to postpone this task since it is not the main purpose of this PR. --- vpr/src/route/connection_router.h | 2 +- .../strong_yoyo_budgets/config/config.txt | 28 ------------------- .../vtr_reg_strong/task_list.txt | 1 - .../strong_yoyo_budgets/config/config.txt | 28 ------------------- .../vtr_reg_strong_odin/task_list.txt | 1 - 5 files changed, 1 insertion(+), 59 deletions(-) delete mode 100644 vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_yoyo_budgets/config/config.txt delete mode 100644 vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets/config/config.txt diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index f3c07510548..9e5d9ea141b 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -51,7 +51,7 @@ class ConnectionRouter : public ConnectionRouterInterface { } ~ConnectionRouter() { - VTR_LOG("Serial Connection Router is being destroyed. Time spent computing SSSP: %.3f seconds\n.", this->sssp_total_time.count() / 1000000.0); + VTR_LOG("Serial Connection Router is being destroyed. Time spent computing SSSP: %.3f seconds.\n", this->sssp_total_time.count() / 1000000.0); } // Clear's the modified list. Should be called after reset_path_costs diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_yoyo_budgets/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_yoyo_budgets/config/config.txt deleted file mode 100644 index 1637460a293..00000000000 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_yoyo_budgets/config/config.txt +++ /dev/null @@ -1,28 +0,0 @@ -############################################## -# Configuration file for running experiments -############################################## - -# Path to directory of circuits to use -circuits_dir=benchmarks/verilog - -# Path to directory of architectures to use -archs_dir=arch/timing - -# Add circuits to list to sweep -circuit_list_add=stereovision3.v - -# Add architectures to list to sweep -arch_list_add=k6_frac_N10_frac_chain_mem32K_40nm.xml - -# Parse info and how to parse -parse_file=vpr_fixed_chan_width.txt - -# How to parse QoR info -qor_parse_file=qor_fixed_chan_width.txt - -# Pass requirements -pass_requirements_file=pass_requirements_fixed_chan_width.txt - -# Script parameters -script_params = --routing_budgets_algorithm yoyo --route_chan_width 100 -sdc_file sdc/samples/stereovision3.sdc - diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt index a107ef945b6..73f97a8867b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt @@ -87,4 +87,3 @@ regression_tests/vtr_reg_strong/strong_timing_no_fail regression_tests/vtr_reg_strong/strong_noc regression_tests/vtr_reg_strong/strong_flat_router regression_tests/vtr_reg_strong/strong_routing_constraints -regression_tests/vtr_reg_strong/strong_yoyo_budgets diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets/config/config.txt deleted file mode 100644 index b82831c7b5c..00000000000 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets/config/config.txt +++ /dev/null @@ -1,28 +0,0 @@ -############################################## -# Configuration file for running experiments -############################################## - -# Path to directory of circuits to use -circuits_dir=benchmarks/verilog - -# Path to directory of architectures to use -archs_dir=arch/timing - -# Add circuits to list to sweep -circuit_list_add=stereovision3.v - -# Add architectures to list to sweep -arch_list_add=k6_frac_N10_frac_chain_mem32K_40nm.xml - -# Parse info and how to parse -parse_file=vpr_fixed_chan_width.txt - -# How to parse QoR info -qor_parse_file=qor_fixed_chan_width.txt - -# Pass requirements -pass_requirements_file=pass_requirements_fixed_chan_width.txt - -# Script parameters -script_params = -start odin --routing_budgets_algorithm yoyo --route_chan_width 100 -sdc_file sdc/samples/stereovision3.sdc - diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt index 0f8a073fe72..37eedf040f0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt @@ -82,4 +82,3 @@ regression_tests/vtr_reg_strong_odin/koios_test regression_tests/vtr_reg_strong_odin/koios_test_no_hb regression_tests/vtr_reg_strong_odin/strong_timing_fail regression_tests/vtr_reg_strong_odin/strong_timing_no_fail -regression_tests/vtr_reg_strong_odin/strong_yoyo_budgets From 599e06eabafc70e929f58c425edfcd18a8d92487 Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Tue, 24 Sep 2024 05:39:44 -0400 Subject: [PATCH 08/14] [Router] No Pointer in DAryHeap to Make ParallelNetlistRouter Happy Replaced the pointer (dynamic memory allocations) of the priority queue in d_ary_heap.h with the priority queue object in order to make the coarse-grained parallel netlist router happy. Previously, when using pointers, as in commit 084fb54, the parallel netlist router would always throw weird double-free errors. After debugging with GDB and Valgrind, it appeared that the issues came from the Intel OneTBB deallocation process. However, there is no convincing evidence of the problems. --- vpr/src/route/d_ary_heap.h | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/vpr/src/route/d_ary_heap.h b/vpr/src/route/d_ary_heap.h index e70323be574..5ac59f1eef2 100644 --- a/vpr/src/route/d_ary_heap.h +++ b/vpr/src/route/d_ary_heap.h @@ -23,35 +23,29 @@ class DAryHeap : public HeapInterface { public: using priority_queue = customized_d_ary_priority_queue, HeapNodeComparator>; - DAryHeap() { - pq_ = new priority_queue(); - } - - ~DAryHeap() { - delete pq_; - } + DAryHeap() {} void init_heap(const DeviceGrid& grid) { size_t target_heap_size = (grid.width() - 1) * (grid.height() - 1); - pq_->reserve(target_heap_size); // reserve the memory for the heap structure + pq_.reserve(target_heap_size); // reserve the memory for the heap structure } bool try_pop(HeapNode& heap_node) { - if (pq_->empty()) { + if (pq_.empty()) { return false; } else { - heap_node = pq_->top(); - pq_->pop(); + heap_node = pq_.top(); + pq_.pop(); return true; } } void add_to_heap(const HeapNode& heap_node) { - pq_->push(heap_node); + pq_.push(heap_node); } void push_back(const HeapNode& heap_node) { - pq_->push(heap_node); // FIXME: add to heap without maintaining the heap property + pq_.push(heap_node); // FIXME: add to heap without maintaining the heap property } void build_heap() { @@ -63,15 +57,15 @@ class DAryHeap : public HeapInterface { } void empty_heap() { - pq_->clear(); + pq_.clear(); } bool is_empty_heap() const { - return (bool)(pq_->empty()); + return (bool)(pq_.empty()); } private: - priority_queue* pq_; + priority_queue pq_; }; using BinaryHeap = DAryHeap<2>; From c360f7134d21c27608c492e702719ab796255bef Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Fri, 27 Sep 2024 11:50:07 -0400 Subject: [PATCH 09/14] [Router] Updated Golden Results of Regression Tests Updated the golden results of the following three regression tests for PR #2720: - vtr_reg_strong/strong_bidir - vtr_reg_strong/strong_place_delay_model - vtr_reg_nightly_test1/arithmetic_tasks/multless_consts --- .../multless_consts/config/golden_results.txt | 2048 ++++++++--------- .../strong_bidir/config/golden_results.txt | 10 +- .../config/golden_results.txt | 4 +- 3 files changed, 1031 insertions(+), 1031 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 99ab1e50cc5..fab55912b06 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 7.14 vpr 62.72 MiB -1 -1 0.37 18464 14 0.25 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 277 309 1 207 91 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1302 6007 1134 4530 343 62.7 MiB 0.07 0.00 8.06507 -165.8 -8.06507 8.06507 0.66 0.00125285 0.00118605 0.0298742 0.0277331 38 3079 21 6.55708e+06 325485 638502. 2209.35 3.54 0.278387 0.238683 23326 155178 -1 2542 18 1049 3126 148192 34301 6.81156 6.81156 -153.807 -6.81156 0 0 851065. 2944.86 0.22 0.07 0.13 -1 -1 0.22 0.0331119 0.0290435 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 7.03 vpr 62.76 MiB -1 -1 0.36 18524 14 0.28 -1 -1 32792 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 272 304 1 211 92 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1258 10442 2540 7122 780 62.8 MiB 0.10 0.00 8.22247 -160.403 -8.22247 8.22247 0.66 0.000900411 0.000831524 0.0496397 0.045709 34 3281 19 6.55708e+06 361650 585099. 2024.56 3.37 0.293576 0.252736 22462 138074 -1 2855 18 1244 3629 199635 46848 7.04996 7.04996 -153.96 -7.04996 0 0 742403. 2568.87 0.20 0.08 0.12 -1 -1 0.20 0.0333648 0.0292402 184 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 5.41 vpr 62.80 MiB -1 -1 0.32 18040 11 0.22 -1 -1 32580 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 280 312 1 203 91 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1264 8863 2060 5892 911 62.8 MiB 0.09 0.00 7.11975 -140.004 -7.11975 7.11975 0.66 0.000859212 0.000790002 0.0427845 0.0396421 36 3173 19 6.55708e+06 325485 612192. 2118.31 2.02 0.217093 0.188203 22750 144809 -1 2760 15 1101 3755 203186 46560 6.31024 6.31024 -137.874 -6.31024 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0297723 0.0262537 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.15 vpr 62.88 MiB -1 -1 0.34 18216 12 0.35 -1 -1 32664 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 29 32 275 307 1 205 92 17 17 289 -1 unnamed_device 23.9 MiB 0.43 1219 12719 3492 7061 2166 62.9 MiB 0.12 0.00 7.73186 -145.655 -7.73186 7.73186 0.69 0.000904693 0.00083497 0.0593236 0.054898 34 3645 27 6.55708e+06 373705 585099. 2024.56 2.39 0.243727 0.211662 22462 138074 -1 2819 18 1400 4397 251853 59239 6.56852 6.56852 -134.924 -6.56852 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0339786 0.0297771 190 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 12.99 vpr 63.03 MiB -1 -1 0.36 18536 13 0.27 -1 -1 32760 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 302 334 1 238 96 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1537 9294 2316 6044 934 63.0 MiB 0.10 0.00 7.74403 -165.695 -7.74403 7.74403 0.65 0.000976527 0.000903928 0.0456228 0.0422018 28 4772 43 6.55708e+06 385760 500653. 1732.36 9.38 0.30691 0.264752 21310 115450 -1 3677 17 1667 4671 277990 64212 6.9195 6.9195 -161.915 -6.9195 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0350853 0.0308436 211 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.02 vpr 62.72 MiB -1 -1 0.37 18656 13 0.24 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 292 324 1 216 94 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1429 10318 2408 6874 1036 62.7 MiB 0.10 0.00 7.55004 -148.529 -7.55004 7.55004 0.70 0.000938339 0.000868462 0.0490933 0.0454435 30 3702 21 6.55708e+06 361650 526063. 1820.29 1.42 0.163343 0.143339 21886 126133 -1 3032 18 1348 4431 211919 49585 6.6027 6.6027 -144.169 -6.6027 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0356151 0.0312959 199 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.45 vpr 62.16 MiB -1 -1 0.30 18108 12 0.19 -1 -1 32604 -1 -1 28 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 27 32 229 261 1 178 87 17 17 289 -1 unnamed_device 23.5 MiB 0.22 1042 7383 1841 5010 532 62.2 MiB 0.07 0.00 7.10318 -127.218 -7.10318 7.10318 0.66 0.000744709 0.000690449 0.0313116 0.0290229 28 2706 23 6.55708e+06 337540 500653. 1732.36 1.26 0.123241 0.107766 21310 115450 -1 2392 22 1205 3250 240801 75713 6.43104 6.43104 -126.122 -6.43104 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0322999 0.0282077 152 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.23 vpr 62.30 MiB -1 -1 0.32 18052 12 0.22 -1 -1 32688 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 229 261 1 185 86 17 17 289 -1 unnamed_device 23.4 MiB 0.25 1218 7457 1700 4721 1036 62.3 MiB 0.07 0.00 6.26429 -136.408 -6.26429 6.26429 0.68 0.000580322 0.000526755 0.0312198 0.0287395 36 3013 36 6.55708e+06 277265 612192. 2118.31 2.88 0.194984 0.168436 22750 144809 -1 2535 19 1046 3086 172167 39148 5.56972 5.56972 -130.236 -5.56972 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0286494 0.0251134 141 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.31 vpr 62.47 MiB -1 -1 0.32 18112 12 0.20 -1 -1 32596 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1147 11573 2830 6597 2146 62.5 MiB 0.10 0.00 6.46263 -134.738 -6.46263 6.46263 0.66 0.000745577 0.000690541 0.0465846 0.0431429 28 3212 35 6.55708e+06 313430 500653. 1732.36 1.98 0.161481 0.141896 21310 115450 -1 2789 20 1233 3134 288271 89181 5.93292 5.93292 -138.747 -5.93292 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0304253 0.0266367 150 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.57 vpr 62.44 MiB -1 -1 0.27 18052 13 0.21 -1 -1 32700 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1201 7613 1790 5065 758 62.4 MiB 0.07 0.00 7.6044 -163.149 -7.6044 7.6044 0.66 0.000809486 0.000751572 0.034173 0.031644 28 3358 45 6.55708e+06 301375 500653. 1732.36 1.33 0.16057 0.139581 21310 115450 -1 2771 16 1141 3137 179678 42083 6.54924 6.54924 -157.958 -6.54924 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0280525 0.0247342 157 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.80 vpr 61.96 MiB -1 -1 0.31 18072 12 0.20 -1 -1 32524 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 23.4 MiB 0.37 975 6890 1484 5091 315 62.0 MiB 0.06 0.00 7.2876 -142.231 -7.2876 7.2876 0.65 0.000700847 0.000649347 0.0281714 0.0261292 28 2669 16 6.55708e+06 289320 500653. 1732.36 1.49 0.108797 0.0951869 21310 115450 -1 2344 20 978 2637 155411 35551 6.35264 6.35264 -138.448 -6.35264 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0286087 0.0249574 132 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.92 vpr 62.04 MiB -1 -1 0.30 18136 12 0.15 -1 -1 32580 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 23.4 MiB 0.23 1124 10859 2500 7050 1309 62.0 MiB 0.09 0.00 6.80891 -152.833 -6.80891 6.80891 0.66 0.000733578 0.000678211 0.0447912 0.0414486 28 3221 50 6.55708e+06 265210 500653. 1732.36 1.84 0.167251 0.146031 21310 115450 -1 2684 17 1091 2924 168986 40534 6.36992 6.36992 -151.051 -6.36992 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0266778 0.023439 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 7.21 vpr 62.72 MiB -1 -1 0.35 18496 13 0.24 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 283 315 1 222 93 17 17 289 -1 unnamed_device 23.8 MiB 0.31 1356 6603 1407 4412 784 62.7 MiB 0.07 0.00 8.08695 -168.334 -8.08695 8.08695 0.81 0.000940293 0.000872054 0.0326793 0.0303155 44 2909 15 6.55708e+06 349595 742403. 2568.87 3.52 0.279022 0.240476 24478 177802 -1 2461 15 1005 2960 138391 32617 7.32896 7.32896 -158.351 -7.32896 0 0 937218. 3242.97 0.25 0.07 0.16 -1 -1 0.25 0.0302965 0.0267535 191 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 8.41 vpr 62.75 MiB -1 -1 0.37 18472 14 0.31 -1 -1 32704 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 23.8 MiB 0.40 1549 7123 1334 5022 767 62.7 MiB 0.08 0.00 8.74533 -181.262 -8.74533 8.74533 0.65 0.000966653 0.000895006 0.0362306 0.0335558 36 3900 33 6.55708e+06 361650 612192. 2118.31 4.73 0.38933 0.333569 22750 144809 -1 3120 17 1318 3696 194391 45419 7.48896 7.48896 -166.817 -7.48896 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0355178 0.0312677 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 7.52 vpr 62.23 MiB -1 -1 0.29 17984 11 0.17 -1 -1 32512 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 23.6 MiB 0.22 935 9838 2446 5532 1860 62.2 MiB 0.08 0.00 6.43815 -124.278 -6.43815 6.43815 0.66 0.000722864 0.000669295 0.0393288 0.0364116 36 2455 49 6.55708e+06 325485 612192. 2118.31 4.23 0.272476 0.234464 22750 144809 -1 2074 16 1026 2882 145880 37165 5.56972 5.56972 -118.41 -5.56972 0 0 782063. 2706.10 0.22 0.07 0.13 -1 -1 0.22 0.0250507 0.0220408 147 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 11.30 vpr 62.77 MiB -1 -1 0.33 18632 12 0.29 -1 -1 32716 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 23.8 MiB 0.45 1403 9865 2364 6534 967 62.8 MiB 0.10 0.00 7.61832 -157.97 -7.61832 7.61832 0.65 0.000979143 0.000907484 0.0472703 0.0437639 34 4162 40 6.55708e+06 397815 585099. 2024.56 7.53 0.374961 0.323097 22462 138074 -1 3561 16 1531 5053 312901 69003 7.03204 7.03204 -158.379 -7.03204 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0343731 0.0303327 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 6.74 vpr 62.64 MiB -1 -1 0.34 18288 14 0.24 -1 -1 32780 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1439 7653 1673 5509 471 62.6 MiB 0.08 0.00 7.67629 -159.38 -7.67629 7.67629 0.67 0.00106782 0.000975084 0.0377232 0.0348718 34 3661 29 6.55708e+06 349595 585099. 2024.56 3.30 0.297527 0.255432 22462 138074 -1 3227 16 1393 4155 254677 56826 6.78964 6.78964 -153.354 -6.78964 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.031243 0.0274272 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 8.23 vpr 61.99 MiB -1 -1 0.30 18332 12 0.17 -1 -1 32392 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63480 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 23.4 MiB 0.32 1135 6807 1403 4768 636 62.0 MiB 0.08 0.00 7.47584 -167.104 -7.47584 7.47584 0.67 0.00074343 0.000689144 0.0376415 0.0350647 28 2836 44 6.55708e+06 277265 500653. 1732.36 4.89 0.23676 0.204764 21310 115450 -1 2503 18 941 2794 164839 37617 6.2395 6.2395 -153.848 -6.2395 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0282205 0.0248075 141 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.13 vpr 61.62 MiB -1 -1 0.27 17608 10 0.10 -1 -1 32384 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63100 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 23.0 MiB 0.16 826 8378 2614 4173 1591 61.6 MiB 0.07 0.00 5.4738 -124.829 -5.4738 5.4738 0.68 0.000562661 0.000522956 0.0308117 0.0286084 26 2202 45 6.55708e+06 192880 477104. 1650.88 1.23 0.113593 0.0991162 21022 109990 -1 1904 17 700 1663 136686 38924 4.68146 4.68146 -121.566 -4.68146 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0202265 0.0176632 91 87 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 7.83 vpr 62.35 MiB -1 -1 0.34 18004 13 0.18 -1 -1 32616 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 231 263 1 186 87 17 17 289 -1 unnamed_device 23.4 MiB 0.36 1089 7959 1662 5544 753 62.4 MiB 0.08 0.00 7.1116 -151.06 -7.1116 7.1116 0.78 0.000752731 0.000697107 0.0342957 0.031469 28 3001 25 6.55708e+06 289320 500653. 1732.36 4.33 0.225631 0.194806 21310 115450 -1 2590 18 1129 2937 165578 39108 6.72852 6.72852 -153.683 -6.72852 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.028428 0.0249674 149 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.74 vpr 62.84 MiB -1 -1 0.34 18536 13 0.27 -1 -1 32856 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1422 6791 1371 4904 516 62.8 MiB 0.08 0.00 8.24149 -161.982 -8.24149 8.24149 0.70 0.00117347 0.00104835 0.0342775 0.0316591 28 3890 47 6.55708e+06 373705 500653. 1732.36 2.07 0.193632 0.168283 21310 115450 -1 3314 25 1965 6443 496259 165088 7.09316 7.09316 -157.694 -7.09316 0 0 612192. 2118.31 0.18 0.17 0.10 -1 -1 0.18 0.0463705 0.0405172 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.61 vpr 62.76 MiB -1 -1 0.38 18616 13 0.27 -1 -1 32468 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1571 7639 1725 5480 434 62.8 MiB 0.09 0.00 7.9256 -167.417 -7.9256 7.9256 0.66 0.000929735 0.000860984 0.0394613 0.0364206 38 3822 44 6.55708e+06 325485 638502. 2209.35 2.90 0.215672 0.187505 23326 155178 -1 3247 15 1389 4538 246880 54439 6.98824 6.98824 -156.279 -6.98824 0 0 851065. 2944.86 0.22 0.09 0.14 -1 -1 0.22 0.0314134 0.0277449 194 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.78 vpr 61.54 MiB -1 -1 0.27 17756 9 0.10 -1 -1 32296 -1 -1 24 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63012 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 22.9 MiB 0.18 719 6668 1593 4477 598 61.5 MiB 0.05 0.00 4.68552 -94.026 -4.68552 4.68552 0.66 0.000512246 0.000476806 0.0207636 0.0193017 26 1778 19 6.55708e+06 289320 477104. 1650.88 0.86 0.0782395 0.0682055 21022 109990 -1 1584 15 597 1508 93970 21931 4.38194 4.38194 -95.8946 -4.38194 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0169054 0.0147885 87 76 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 5.35 vpr 62.55 MiB -1 -1 0.32 18308 13 0.32 -1 -1 32764 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 23.7 MiB 0.22 1351 10979 3098 6336 1545 62.5 MiB 0.11 0.00 8.17761 -160.563 -8.17761 8.17761 0.66 0.000927092 0.0008591 0.0548858 0.0508008 30 3690 26 6.55708e+06 301375 526063. 1820.29 1.79 0.173987 0.152849 21886 126133 -1 2989 16 1337 4047 197784 46628 7.2847 7.2847 -155.953 -7.2847 0 0 666494. 2306.21 0.26 0.08 0.12 -1 -1 0.26 0.0314382 0.0277119 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 5.21 vpr 61.35 MiB -1 -1 0.23 17828 8 0.10 -1 -1 32136 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 32 32 154 186 1 120 79 17 17 289 -1 unnamed_device 22.8 MiB 0.14 651 6501 1478 4780 243 61.4 MiB 0.05 0.00 4.41277 -92.7441 -4.41277 4.41277 0.66 0.000512563 0.000476039 0.0211761 0.0196855 28 1783 21 6.55708e+06 180825 500653. 1732.36 2.43 0.165895 0.142143 21310 115450 -1 1603 14 636 1411 82033 20644 3.82214 3.82214 -95.8147 -3.82214 0 0 612192. 2118.31 0.18 0.04 0.11 -1 -1 0.18 0.0160313 0.0140854 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.65 vpr 62.54 MiB -1 -1 0.33 18016 15 0.23 -1 -1 32816 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 254 286 1 197 90 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1196 7728 1698 5709 321 62.5 MiB 0.08 0.00 8.17826 -163.063 -8.17826 8.17826 0.72 0.00083906 0.000778188 0.0353938 0.0328128 34 3092 21 6.55708e+06 313430 585099. 2024.56 1.76 0.18835 0.163666 22462 138074 -1 2774 63 2684 8832 1170555 624055 7.22924 7.22924 -156.603 -7.22924 0 0 742403. 2568.87 0.20 0.40 0.12 -1 -1 0.20 0.0875183 0.0749334 165 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 4.93 vpr 62.57 MiB -1 -1 0.33 18308 13 0.22 -1 -1 32704 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1290 7929 1849 5090 990 62.6 MiB 0.08 0.00 7.1956 -157.385 -7.1956 7.1956 0.70 0.000847327 0.000784902 0.0367788 0.0340624 36 3101 19 6.55708e+06 313430 612192. 2118.31 1.50 0.158159 0.137804 22750 144809 -1 2628 17 1134 3256 168918 39645 6.21818 6.21818 -146.425 -6.21818 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0308984 0.0270994 168 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.42 vpr 62.67 MiB -1 -1 0.37 18308 13 0.31 -1 -1 32804 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1302 9753 2433 6184 1136 62.7 MiB 0.10 0.00 7.90993 -159.862 -7.90993 7.90993 0.65 0.000907788 0.000841861 0.0458031 0.0424216 28 3838 36 6.55708e+06 349595 500653. 1732.36 1.96 0.177894 0.155505 21310 115450 -1 2999 21 1654 5200 269562 63388 7.1619 7.1619 -160.267 -7.1619 0 0 612192. 2118.31 0.18 0.11 0.11 -1 -1 0.18 0.0382226 0.0333751 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 5.58 vpr 62.10 MiB -1 -1 0.31 18044 12 0.15 -1 -1 32616 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 32 32 238 270 1 189 85 17 17 289 -1 unnamed_device 23.4 MiB 0.39 1221 7525 1804 5243 478 62.1 MiB 0.07 0.00 6.81858 -149.06 -6.81858 6.81858 0.70 0.000749943 0.000694529 0.0332414 0.0307542 34 3283 26 6.55708e+06 253155 585099. 2024.56 2.27 0.190272 0.164815 22462 138074 -1 2749 15 1023 2989 181961 41293 5.93798 5.93798 -142.769 -5.93798 0 0 742403. 2568.87 0.20 0.07 0.12 -1 -1 0.20 0.0250934 0.0221183 148 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.50 vpr 62.09 MiB -1 -1 0.31 18000 11 0.14 -1 -1 32736 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.16 989 9199 2086 6295 818 62.1 MiB 0.08 0.00 6.43069 -134.961 -6.43069 6.43069 0.66 0.000682079 0.000632132 0.036255 0.0335813 28 2534 18 6.55708e+06 277265 500653. 1732.36 2.51 0.188561 0.163137 21310 115450 -1 2287 14 909 2396 149590 35281 5.62118 5.62118 -131.641 -5.62118 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0218422 0.0192199 131 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 8.09 vpr 62.00 MiB -1 -1 0.32 18008 11 0.17 -1 -1 32596 -1 -1 28 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 23.3 MiB 0.48 932 12958 3701 6997 2260 62.0 MiB 0.10 0.00 6.5982 -125.759 -6.5982 6.5982 0.65 0.000724869 0.000669739 0.0507902 0.046931 32 2645 24 6.55708e+06 337540 554710. 1919.41 4.57 0.272498 0.235207 22174 131602 -1 2361 28 1350 3514 258755 74180 5.86158 5.86158 -127.686 -5.86158 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0384366 0.0333465 150 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 4.63 vpr 62.64 MiB -1 -1 0.28 18072 12 0.20 -1 -1 32668 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 23.5 MiB 0.23 1332 7326 1532 5228 566 62.6 MiB 0.08 0.00 7.49746 -163.819 -7.49746 7.49746 0.66 0.00109942 0.00100378 0.0349461 0.0323703 28 3385 27 6.55708e+06 313430 500653. 1732.36 1.41 0.146613 0.127899 21310 115450 -1 2821 17 1262 3325 180704 42519 6.38924 6.38924 -157.17 -6.38924 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0313577 0.0275515 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.78 vpr 62.15 MiB -1 -1 0.29 17924 12 0.20 -1 -1 32672 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 237 269 1 178 86 17 17 289 -1 unnamed_device 23.4 MiB 0.46 1141 5378 1025 3934 419 62.1 MiB 0.06 0.00 7.2858 -149.294 -7.2858 7.2858 0.66 0.000746783 0.000692429 0.0242349 0.0224794 28 3003 49 6.55708e+06 277265 500653. 1732.36 1.40 0.15186 0.131654 21310 115450 -1 2599 17 1054 2881 159276 37291 6.47024 6.47024 -145.428 -6.47024 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0270309 0.0237523 148 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 6.33 vpr 62.01 MiB -1 -1 0.33 18092 10 0.15 -1 -1 32772 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 23.5 MiB 0.16 1038 7643 2004 4942 697 62.0 MiB 0.08 0.00 5.84872 -123.373 -5.84872 5.84872 0.66 0.000842151 0.000775416 0.0367277 0.0338952 34 2652 32 6.55708e+06 265210 585099. 2024.56 3.15 0.246643 0.212336 22462 138074 -1 2218 14 806 2409 137837 32114 5.08326 5.08326 -116.542 -5.08326 0 0 742403. 2568.87 0.20 0.06 0.12 -1 -1 0.20 0.0230347 0.0203239 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.01 vpr 62.99 MiB -1 -1 0.36 18896 13 0.29 -1 -1 32900 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1471 6791 1284 4967 540 63.0 MiB 0.08 0.00 7.9206 -163.84 -7.9206 7.9206 0.66 0.00100614 0.000930907 0.0353648 0.0326917 30 3900 46 6.55708e+06 373705 526063. 1820.29 1.53 0.193641 0.167934 21886 126133 -1 2938 15 1341 4212 195757 47245 7.0789 7.0789 -157.591 -7.0789 0 0 666494. 2306.21 0.21 0.09 0.10 -1 -1 0.21 0.0339491 0.0299756 221 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.07 vpr 62.65 MiB -1 -1 0.34 18808 14 0.31 -1 -1 33196 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1376 6509 1418 4515 576 62.6 MiB 0.07 0.00 7.46584 -163.527 -7.46584 7.46584 0.66 0.000952289 0.000883953 0.0328295 0.0304267 34 3649 24 6.55708e+06 337540 585099. 2024.56 2.25 0.183778 0.159673 22462 138074 -1 3209 19 1483 4380 252993 58147 6.61598 6.61598 -157.876 -6.61598 0 0 742403. 2568.87 0.20 0.10 0.13 -1 -1 0.20 0.0364302 0.0319458 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 6.69 vpr 62.01 MiB -1 -1 0.32 17972 12 0.15 -1 -1 32300 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 23.3 MiB 0.21 1191 6716 1464 4657 595 62.0 MiB 0.06 0.00 7.49501 -150.663 -7.49501 7.49501 0.66 0.000736827 0.000681384 0.0268149 0.024762 36 2739 49 6.55708e+06 349595 612192. 2118.31 3.49 0.273543 0.235052 22750 144809 -1 2451 14 945 2568 146257 34226 6.3617 6.3617 -139.003 -6.3617 0 0 782063. 2706.10 0.25 0.07 0.13 -1 -1 0.25 0.0236466 0.0208673 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 12.92 vpr 62.89 MiB -1 -1 0.38 18540 12 0.35 -1 -1 32956 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 307 339 1 232 97 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1434 7201 1575 4780 846 62.9 MiB 0.08 0.00 7.50893 -153.023 -7.50893 7.50893 0.66 0.000986119 0.000910966 0.0356064 0.0329237 28 4518 48 6.55708e+06 409870 500653. 1732.36 9.15 0.302981 0.261615 21310 115450 -1 3635 17 1650 4826 282573 65690 6.59244 6.59244 -148.359 -6.59244 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0355824 0.0312584 219 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 9.88 vpr 62.70 MiB -1 -1 0.39 18920 14 0.33 -1 -1 32828 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1374 5474 1049 3945 480 62.7 MiB 0.06 0.00 8.16861 -161.211 -8.16861 8.16861 0.66 0.000959668 0.000889993 0.0285683 0.0264621 28 3932 23 6.55708e+06 349595 500653. 1732.36 6.37 0.260501 0.225089 21310 115450 -1 3284 18 1452 4273 253909 60691 7.1997 7.1997 -157.552 -7.1997 0 0 612192. 2118.31 0.18 0.11 0.11 -1 -1 0.18 0.0397622 0.0350197 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.75 vpr 62.69 MiB -1 -1 0.24 18808 13 0.33 -1 -1 32904 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1387 6619 1451 4703 465 62.7 MiB 0.07 0.00 8.01146 -159.733 -8.01146 8.01146 0.69 0.000900467 0.000835027 0.0326339 0.0302312 36 3546 21 6.55708e+06 337540 612192. 2118.31 2.26 0.21103 0.182397 22750 144809 -1 3161 21 1696 5215 289539 65706 7.10844 7.10844 -156.911 -7.10844 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0352024 0.0310745 185 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 5.03 vpr 62.50 MiB -1 -1 0.39 18092 13 0.25 -1 -1 32992 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 23.4 MiB 0.39 1346 5039 929 3735 375 62.5 MiB 0.06 0.00 7.0422 -139.101 -7.0422 7.0422 0.66 0.0010101 0.000906695 0.0266767 0.0246674 30 3601 27 6.55708e+06 313430 526063. 1820.29 1.37 0.14102 0.122427 21886 126133 -1 2974 27 1332 4238 413128 180626 6.07044 6.07044 -135.521 -6.07044 0 0 666494. 2306.21 0.19 0.15 0.11 -1 -1 0.19 0.0449313 0.0390153 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 8.03 vpr 62.61 MiB -1 -1 0.30 18044 12 0.24 -1 -1 32860 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1210 7108 1610 4933 565 62.6 MiB 0.07 0.00 6.87954 -141.685 -6.87954 6.87954 0.69 0.000828434 0.000768398 0.033236 0.0307738 28 3162 31 6.55708e+06 289320 500653. 1732.36 4.76 0.24687 0.21245 21310 115450 -1 2792 16 1149 3239 194030 44473 6.09232 6.09232 -140.235 -6.09232 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0290264 0.0255237 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 9.11 vpr 63.00 MiB -1 -1 0.43 19264 14 0.39 -1 -1 32900 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1621 7439 1507 5629 303 63.0 MiB 0.09 0.00 8.33767 -177.625 -8.33767 8.33767 0.66 0.00105043 0.000965834 0.0402778 0.0372068 36 4483 50 6.55708e+06 373705 612192. 2118.31 5.22 0.304171 0.262982 22750 144809 -1 3592 17 1560 5035 287104 64510 7.16756 7.16756 -166.325 -7.16756 0 0 782063. 2706.10 0.25 0.10 0.12 -1 -1 0.25 0.0389671 0.0345651 230 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 10.81 vpr 62.55 MiB -1 -1 0.24 17956 11 0.24 -1 -1 32340 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1199 8009 1837 5098 1074 62.5 MiB 0.08 0.00 6.67634 -139.796 -6.67634 6.67634 0.66 0.000816255 0.000757902 0.0360718 0.0334154 28 3632 25 6.55708e+06 313430 500653. 1732.36 7.52 0.228523 0.19753 21310 115450 -1 3034 17 1219 3512 237683 52838 6.02098 6.02098 -144.744 -6.02098 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0294573 0.0258892 163 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 5.14 vpr 62.75 MiB -1 -1 0.38 18564 13 0.26 -1 -1 33112 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 23.8 MiB 0.37 1233 10087 2475 7168 444 62.8 MiB 0.10 0.00 8.06207 -155.797 -8.06207 8.06207 0.70 0.000909603 0.000841237 0.0485382 0.0448437 30 3293 46 6.55708e+06 337540 526063. 1820.29 1.51 0.193034 0.168017 21886 126133 -1 2675 26 1106 3751 251091 79270 6.93376 6.93376 -147.802 -6.93376 0 0 666494. 2306.21 0.19 0.11 0.10 -1 -1 0.19 0.0454805 0.0395261 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 10.45 vpr 62.97 MiB -1 -1 0.35 18216 12 0.25 -1 -1 32952 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 303 335 1 222 95 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1436 6359 1286 4580 493 63.0 MiB 0.07 0.00 6.95103 -151.174 -6.95103 6.95103 0.67 0.000969674 0.000893551 0.0326121 0.0301622 30 3712 38 6.55708e+06 373705 526063. 1820.29 6.84 0.37167 0.319236 21886 126133 -1 3281 19 1479 5216 261732 58859 5.82238 5.82238 -142.785 -5.82238 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.03795 0.0332257 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 6.23 vpr 62.73 MiB -1 -1 0.31 18208 13 0.24 -1 -1 32700 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1308 6183 1201 4740 242 62.7 MiB 0.07 0.00 7.54518 -157.312 -7.54518 7.54518 0.65 0.00075163 0.000679449 0.0301758 0.0278528 30 3205 18 6.55708e+06 349595 526063. 1820.29 2.98 0.249847 0.214846 21886 126133 -1 2732 14 1073 3168 149774 35292 6.66944 6.66944 -149.906 -6.66944 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0290196 0.0256323 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 5.55 vpr 62.92 MiB -1 -1 0.38 18092 13 0.21 -1 -1 33252 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1388 8532 2067 5744 721 62.9 MiB 0.09 0.00 7.16941 -159.486 -7.16941 7.16941 0.72 0.000868861 0.000805197 0.0401885 0.0372054 30 3289 17 6.55708e+06 313430 526063. 1820.29 2.10 0.142413 0.124849 21886 126133 -1 2807 26 1192 3527 316815 132051 6.22018 6.22018 -150.463 -6.22018 0 0 666494. 2306.21 0.19 0.13 0.09 -1 -1 0.19 0.0430137 0.0373816 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.96 vpr 62.69 MiB -1 -1 0.37 18568 12 0.24 -1 -1 32956 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 23.7 MiB 0.41 1391 9892 2367 6162 1363 62.7 MiB 0.10 0.00 7.40971 -158.505 -7.40971 7.40971 0.67 0.000937672 0.000858506 0.0471117 0.0435041 38 3339 27 6.55708e+06 361650 638502. 2209.35 4.40 0.346153 0.297764 23326 155178 -1 2841 15 1219 4211 197600 45318 6.53898 6.53898 -147.821 -6.53898 0 0 851065. 2944.86 0.21 0.05 0.09 -1 -1 0.21 0.0186167 0.0168474 197 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.72 vpr 62.86 MiB -1 -1 0.22 18752 13 0.31 -1 -1 33244 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1496 6791 1324 4848 619 62.9 MiB 0.08 0.00 7.58188 -163.597 -7.58188 7.58188 0.66 0.000988434 0.000915037 0.033829 0.0312087 36 3856 17 6.55708e+06 373705 612192. 2118.31 3.20 0.232079 0.201055 22750 144809 -1 3244 19 1411 4282 222301 51731 6.62764 6.62764 -150.995 -6.62764 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0397662 0.0350184 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.89 vpr 62.64 MiB -1 -1 0.32 18052 14 0.27 -1 -1 32712 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 262 294 1 193 89 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1153 11969 3180 6354 2435 62.6 MiB 0.11 0.00 8.31223 -163.645 -8.31223 8.31223 0.66 0.000855781 0.000792068 0.0548979 0.0508524 34 3446 43 6.55708e+06 301375 585099. 2024.56 2.36 0.2269 0.198158 22462 138074 -1 2795 19 1302 4041 241474 58208 7.7191 7.7191 -164.117 -7.7191 0 0 742403. 2568.87 0.21 0.10 0.13 -1 -1 0.21 0.0340522 0.02985 168 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 4.93 vpr 62.91 MiB -1 -1 0.32 18188 13 0.28 -1 -1 32728 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 291 323 1 224 95 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1425 8519 1811 6143 565 62.9 MiB 0.09 0.00 8.29301 -163.281 -8.29301 8.29301 0.66 0.000935825 0.000864693 0.040325 0.037299 30 3639 21 6.55708e+06 373705 526063. 1820.29 1.44 0.152679 0.13372 21886 126133 -1 3048 15 1297 3920 193839 45269 7.32896 7.32896 -156.234 -7.32896 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0309719 0.0273613 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 7.57 vpr 63.17 MiB -1 -1 0.39 18536 13 0.28 -1 -1 32816 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1386 9679 2058 7206 415 63.2 MiB 0.10 0.00 7.87649 -159.745 -7.87649 7.87649 0.66 0.000961697 0.000891505 0.0474816 0.043927 38 3311 30 6.55708e+06 373705 638502. 2209.35 3.91 0.35158 0.302819 23326 155178 -1 2716 16 1393 4118 186063 45893 6.6811 6.6811 -148.326 -6.6811 0 0 851065. 2944.86 0.22 0.08 0.14 -1 -1 0.22 0.0335478 0.0295485 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 4.64 vpr 63.07 MiB -1 -1 0.38 18564 12 0.30 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 308 340 1 237 97 17 17 289 -1 unnamed_device 24.1 MiB 0.35 1456 8755 1875 6172 708 63.1 MiB 0.09 0.00 7.82047 -162.193 -7.82047 7.82047 0.65 0.000966957 0.000891491 0.0418651 0.038709 30 3744 18 6.55708e+06 397815 526063. 1820.29 1.09 0.153003 0.134045 21886 126133 -1 3061 15 1373 3745 174001 41817 7.0025 7.0025 -157.196 -7.0025 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0322148 0.0284523 216 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.31 vpr 61.89 MiB -1 -1 0.28 18112 11 0.15 -1 -1 32708 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63376 32 32 216 248 1 160 83 17 17 289 -1 unnamed_device 23.4 MiB 0.21 1004 9263 2865 4455 1943 61.9 MiB 0.08 0.00 6.22709 -128.104 -6.22709 6.22709 0.63 0.000682427 0.000631937 0.0377787 0.0348305 30 2463 15 6.55708e+06 229045 526063. 1820.29 3.19 0.240543 0.207023 21886 126133 -1 2091 18 889 2380 117579 28327 5.24832 5.24832 -126.347 -5.24832 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.025766 0.0225977 126 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 10.05 vpr 62.64 MiB -1 -1 0.25 18300 13 0.21 -1 -1 32780 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 254 286 1 195 88 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1233 5938 1147 4519 272 62.6 MiB 0.07 0.00 7.61227 -159.82 -7.61227 7.61227 0.67 0.000835936 0.00077314 0.0285183 0.0264614 26 3709 42 6.55708e+06 289320 477104. 1650.88 6.69 0.293921 0.252629 21022 109990 -1 3051 20 1257 3519 238150 53555 6.82624 6.82624 -156.727 -6.82624 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0339574 0.0297006 161 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 12.75 vpr 63.02 MiB -1 -1 0.37 19092 14 0.42 -1 -1 33016 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 338 370 1 251 98 17 17 289 -1 unnamed_device 24.1 MiB 0.50 1522 6848 1188 5384 276 63.0 MiB 0.09 0.00 8.62537 -170.671 -8.62537 8.62537 0.67 0.00109536 0.00100593 0.0376128 0.0348002 28 4874 46 6.55708e+06 409870 500653. 1732.36 8.72 0.350957 0.302723 21310 115450 -1 4049 29 2764 9243 620816 154672 7.72935 7.72935 -170.936 -7.72935 0 0 612192. 2118.31 0.20 0.20 0.11 -1 -1 0.20 0.0595931 0.0519308 244 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.33 vpr 62.86 MiB -1 -1 0.36 18108 13 0.28 -1 -1 32700 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.42 1384 6823 1472 4881 470 62.9 MiB 0.08 0.00 7.83243 -170.302 -7.83243 7.83243 0.67 0.000899248 0.000834477 0.0339556 0.0314677 44 3050 17 6.55708e+06 325485 742403. 2568.87 3.51 0.278298 0.23934 24478 177802 -1 2643 14 1012 3046 157672 35722 6.7601 6.7601 -155.805 -6.7601 0 0 937218. 3242.97 0.26 0.07 0.16 -1 -1 0.26 0.0287496 0.0254365 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.34 vpr 61.97 MiB -1 -1 0.31 18024 11 0.17 -1 -1 32676 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 23.4 MiB 0.16 1068 5665 1228 3746 691 62.0 MiB 0.07 0.00 6.82549 -140.791 -6.82549 6.82549 0.90 0.00218 0.0020686 0.0265418 0.0245217 28 2758 48 6.55708e+06 277265 500653. 1732.36 4.04 0.234345 0.201356 21310 115450 -1 2223 15 863 2453 136374 32055 6.02098 6.02098 -137.567 -6.02098 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0190735 0.0169359 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 6.35 vpr 62.85 MiB -1 -1 0.36 19224 15 0.50 -1 -1 32812 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1739 8198 1861 5696 641 62.9 MiB 0.10 0.00 9.48099 -183.773 -9.48099 9.48099 0.66 0.00111774 0.00103299 0.0453296 0.0418345 30 4766 43 6.55708e+06 409870 526063. 1820.29 2.53 0.223095 0.194443 21886 126133 -1 3758 20 2315 7493 367102 83035 8.17861 8.17861 -174.69 -8.17861 0 0 666494. 2306.21 0.19 0.13 0.11 -1 -1 0.19 0.0464022 0.0406802 257 257 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 5.49 vpr 62.80 MiB -1 -1 0.32 18440 13 0.32 -1 -1 32764 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 297 329 1 216 91 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1402 8047 1818 5614 615 62.8 MiB 0.09 0.00 8.34252 -168.918 -8.34252 8.34252 0.67 0.000957082 0.000886521 0.0419248 0.0388136 28 3745 33 6.55708e+06 325485 500653. 1732.36 1.95 0.179527 0.15713 21310 115450 -1 3305 32 1424 4263 490479 193477 7.13236 7.13236 -164.015 -7.13236 0 0 612192. 2118.31 0.18 0.18 0.11 -1 -1 0.18 0.0562012 0.0487657 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.55 vpr 62.09 MiB -1 -1 0.27 17764 11 0.13 -1 -1 32676 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1123 7079 1610 4999 470 62.1 MiB 0.07 0.00 6.21723 -134.883 -6.21723 6.21723 0.66 0.000732626 0.000673226 0.029886 0.0275582 28 3226 47 6.55708e+06 265210 500653. 1732.36 2.38 0.157597 0.137671 21310 115450 -1 2683 25 1169 3414 305780 96470 5.40772 5.40772 -133.925 -5.40772 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0347721 0.0302852 141 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 5.06 vpr 62.95 MiB -1 -1 0.35 18540 12 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1442 7336 1475 5411 450 62.9 MiB 0.08 0.00 7.74548 -154.851 -7.74548 7.74548 0.70 0.000724799 0.000653202 0.0324624 0.0297609 30 3768 28 6.55708e+06 361650 526063. 1820.29 1.44 0.128669 0.113276 21886 126133 -1 2990 17 1354 4447 206420 49162 6.6811 6.6811 -148.12 -6.6811 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0354458 0.0311621 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.91 vpr 62.32 MiB -1 -1 0.29 18044 12 0.19 -1 -1 32728 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 23.3 MiB 0.40 1234 7728 1773 5535 420 62.3 MiB 0.08 0.00 7.26258 -154.513 -7.26258 7.26258 0.67 0.000791369 0.00072307 0.0338127 0.0312146 30 3076 20 6.55708e+06 313430 526063. 1820.29 3.50 0.29432 0.254066 21886 126133 -1 2578 16 1075 2998 146869 34828 6.50944 6.50944 -149.849 -6.50944 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0275223 0.0242078 153 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.13 vpr 62.23 MiB -1 -1 0.31 18144 12 0.18 -1 -1 32644 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 23.4 MiB 0.18 964 11603 3147 6112 2344 62.2 MiB 0.10 0.00 6.97512 -139.748 -6.97512 6.97512 0.67 0.000743787 0.000688194 0.0505932 0.0468064 30 2394 29 6.55708e+06 253155 526063. 1820.29 2.94 0.276316 0.238859 21886 126133 -1 1946 17 802 2468 113048 27165 6.11164 6.11164 -132.147 -6.11164 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.027002 0.0237163 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 4.88 vpr 62.71 MiB -1 -1 0.39 18592 12 0.29 -1 -1 33380 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1335 8579 2026 5633 920 62.7 MiB 0.09 0.00 6.72746 -129.302 -6.72746 6.72746 0.66 0.000908034 0.000839337 0.0408001 0.0377242 30 3317 43 6.55708e+06 373705 526063. 1820.29 1.42 0.180945 0.157472 21886 126133 -1 2826 18 1244 4120 188907 44459 6.10198 6.10198 -127.139 -6.10198 0 0 666494. 2306.21 0.20 0.08 0.12 -1 -1 0.20 0.0344755 0.0302573 190 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 5.63 vpr 63.21 MiB -1 -1 0.37 18564 13 0.35 -1 -1 32712 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 24.4 MiB 0.58 1542 6535 1180 4663 692 63.2 MiB 0.08 0.00 8.33266 -174.188 -8.33266 8.33266 0.69 0.00103233 0.000955937 0.0344458 0.0319218 30 4033 40 6.55708e+06 397815 526063. 1820.29 1.72 0.188799 0.164979 21886 126133 -1 3267 24 1656 4611 309598 104826 7.16956 7.16956 -164.247 -7.16956 0 0 666494. 2306.21 0.19 0.13 0.15 -1 -1 0.19 0.0459871 0.0403786 238 236 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 7.56 vpr 62.68 MiB -1 -1 0.38 18564 12 0.24 -1 -1 32920 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 290 322 1 219 93 17 17 289 -1 unnamed_device 23.8 MiB 0.43 1337 14373 3637 8257 2479 62.7 MiB 0.14 0.00 7.56736 -150.416 -7.56736 7.56736 0.66 0.000935771 0.00086679 0.0680709 0.0630665 36 3622 43 6.55708e+06 349595 612192. 2118.31 3.76 0.288068 0.250703 22750 144809 -1 3031 29 1892 6473 553405 193941 6.55324 6.55324 -142.68 -6.55324 0 0 782063. 2706.10 0.21 0.19 0.13 -1 -1 0.21 0.0518562 0.0450923 198 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 6.28 vpr 61.91 MiB -1 -1 0.26 17924 12 0.15 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 23.3 MiB 0.48 1128 7404 1881 4703 820 61.9 MiB 0.07 0.00 6.63325 -140.069 -6.63325 6.63325 0.66 0.000691438 0.00063989 0.0303447 0.0280724 30 2675 25 6.55708e+06 241100 526063. 1820.29 2.93 0.220977 0.190241 21886 126133 -1 2183 16 874 2494 118684 28424 5.84792 5.84792 -135.25 -5.84792 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0244 0.0214827 126 120 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 7.40 vpr 62.49 MiB -1 -1 0.29 18292 12 0.21 -1 -1 32428 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 31 32 244 276 1 182 88 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1170 7498 1759 4547 1192 62.5 MiB 0.07 0.00 7.01252 -142.578 -7.01252 7.01252 0.66 0.000808783 0.000740576 0.0332928 0.0307404 36 2969 23 6.55708e+06 301375 612192. 2118.31 4.11 0.308689 0.264552 22750 144809 -1 2577 16 1162 3661 196645 45570 5.97978 5.97978 -135.917 -5.97978 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0275096 0.0241508 154 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 6.88 vpr 62.68 MiB -1 -1 0.35 18296 11 0.18 -1 -1 32740 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1298 4853 867 3420 566 62.7 MiB 0.06 0.00 6.85992 -133.534 -6.85992 6.85992 0.66 0.000882159 0.000807658 0.0246436 0.0228051 38 3068 19 6.55708e+06 361650 638502. 2209.35 3.67 0.268064 0.229169 23326 155178 -1 2722 17 1166 3960 199201 45763 5.98178 5.98178 -129.207 -5.98178 0 0 851065. 2944.86 0.22 0.08 0.14 -1 -1 0.22 0.0322791 0.0283257 190 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.17 vpr 62.55 MiB -1 -1 0.33 17804 11 0.20 -1 -1 32832 -1 -1 27 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 23.5 MiB 0.13 1170 7767 1783 5428 556 62.6 MiB 0.08 0.00 6.49677 -121.518 -6.49677 6.49677 0.66 0.00082224 0.000763471 0.0362767 0.0336815 28 3308 46 6.55708e+06 325485 500653. 1732.36 1.93 0.168629 0.146605 21310 115450 -1 2742 16 1154 3672 238825 52497 5.69192 5.69192 -121.797 -5.69192 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0285252 0.0250106 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 9.16 vpr 62.68 MiB -1 -1 0.33 18108 13 0.21 -1 -1 32640 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 30 32 235 267 1 176 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1097 11593 3515 6131 1947 62.7 MiB 0.10 0.00 7.49937 -144.316 -7.49937 7.49937 0.66 0.000761158 0.000705534 0.048174 0.0446331 28 3200 50 6.55708e+06 313430 500653. 1732.36 5.81 0.265668 0.231189 21310 115450 -1 2553 20 1158 3375 193107 45194 6.78764 6.78764 -141.625 -6.78764 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0310005 0.0271482 148 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.84 vpr 62.61 MiB -1 -1 0.35 18308 12 0.20 -1 -1 32396 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 23.6 MiB 0.28 1348 8993 2218 6004 771 62.6 MiB 0.09 0.00 7.3262 -158.713 -7.3262 7.3262 0.66 0.000854954 0.000792122 0.0405551 0.037575 28 3637 33 6.55708e+06 337540 500653. 1732.36 2.49 0.160188 0.139864 21310 115450 -1 3055 22 1532 4483 326671 87119 6.71264 6.71264 -157.26 -6.71264 0 0 612192. 2118.31 0.18 0.12 0.08 -1 -1 0.18 0.0374486 0.0326911 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 8.24 vpr 62.73 MiB -1 -1 0.25 18316 13 0.28 -1 -1 32752 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1215 5718 1125 4239 354 62.7 MiB 0.06 0.00 8.06933 -153.277 -8.06933 8.06933 0.66 0.000906357 0.000840753 0.0289939 0.0268333 26 3789 32 6.55708e+06 325485 477104. 1650.88 4.92 0.263373 0.227354 21022 109990 -1 3184 22 1707 5165 324877 74151 7.0025 7.0025 -157.365 -7.0025 0 0 585099. 2024.56 0.17 0.12 0.10 -1 -1 0.17 0.039164 0.0341592 187 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.73 vpr 62.96 MiB -1 -1 0.38 18672 14 0.26 -1 -1 32956 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1301 9407 2176 6085 1146 63.0 MiB 0.10 0.00 8.35433 -163.826 -8.35433 8.35433 0.66 0.000931923 0.000862795 0.0466193 0.0431242 28 3805 35 6.55708e+06 337540 500653. 1732.36 2.27 0.178966 0.156723 21310 115450 -1 3098 17 1364 3824 225167 51687 7.18182 7.18182 -157.405 -7.18182 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0336074 0.029524 196 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.45 vpr 62.54 MiB -1 -1 0.41 18824 14 0.24 -1 -1 32936 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1247 10385 2379 5942 2064 62.5 MiB 0.10 0.00 7.58177 -145.01 -7.58177 7.58177 0.70 0.000872343 0.000807836 0.0491473 0.0455188 34 3317 49 6.55708e+06 301375 585099. 2024.56 3.94 0.34154 0.293385 22462 138074 -1 2731 17 1199 3748 206549 48044 6.70864 6.70864 -142.763 -6.70864 0 0 742403. 2568.87 0.21 0.09 0.13 -1 -1 0.21 0.0317779 0.0278821 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 9.14 vpr 62.70 MiB -1 -1 0.40 18868 13 0.39 -1 -1 33316 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 296 328 1 222 93 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1403 8073 1958 5278 837 62.7 MiB 0.09 0.00 7.90532 -157.651 -7.90532 7.90532 0.67 0.000960123 0.000881897 0.0404373 0.0373798 28 3887 23 6.55708e+06 349595 500653. 1732.36 5.43 0.269568 0.232472 21310 115450 -1 3499 21 1898 5430 340594 75352 6.85016 6.85016 -153.21 -6.85016 0 0 612192. 2118.31 0.18 0.12 0.10 -1 -1 0.18 0.0405848 0.03544 205 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 7.77 vpr 62.39 MiB -1 -1 0.28 18088 13 0.19 -1 -1 32628 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 234 266 1 185 86 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1086 8024 1919 5617 488 62.4 MiB 0.08 0.00 7.66268 -153.181 -7.66268 7.66268 0.66 0.000758013 0.000703175 0.0347466 0.0321409 26 3172 28 6.55708e+06 289320 477104. 1650.88 4.62 0.286194 0.246376 21022 109990 -1 2671 15 1123 2693 171006 39961 6.94644 6.94644 -155.213 -6.94644 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.024912 0.0219606 146 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 9.62 vpr 62.68 MiB -1 -1 0.34 18708 13 0.46 -1 -1 32852 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1416 7336 1414 5551 371 62.7 MiB 0.08 0.00 8.07413 -161.91 -8.07413 8.07413 0.66 0.000971793 0.000900927 0.0371909 0.034467 30 3702 28 6.55708e+06 385760 526063. 1820.29 5.92 0.356444 0.307207 21886 126133 -1 3102 18 1510 4211 202277 48691 6.9195 6.9195 -154.528 -6.9195 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0367633 0.0320945 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 9.43 vpr 62.66 MiB -1 -1 0.37 18428 14 0.34 -1 -1 32952 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 274 306 1 211 89 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1220 7217 1622 4486 1109 62.7 MiB 0.08 0.00 8.04044 -163.742 -8.04044 8.04044 0.65 0.00089603 0.00082912 0.036277 0.0335721 34 4022 46 6.55708e+06 301375 585099. 2024.56 5.72 0.333223 0.285978 22462 138074 -1 3088 25 1449 4479 326046 95793 7.01016 7.01016 -159.344 -7.01016 0 0 742403. 2568.87 0.21 0.13 0.12 -1 -1 0.21 0.0437553 0.0381034 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.74 vpr 62.65 MiB -1 -1 0.37 18172 13 0.21 -1 -1 32728 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 266 298 1 204 90 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1270 6321 1361 4444 516 62.6 MiB 0.07 0.00 7.62087 -154.066 -7.62087 7.62087 0.66 0.000877306 0.000812839 0.0306336 0.0283896 44 2993 19 6.55708e+06 325485 742403. 2568.87 3.26 0.265849 0.225781 24478 177802 -1 2523 16 1046 3148 159499 36425 6.70864 6.70864 -145.074 -6.70864 0 0 937218. 3242.97 0.25 0.08 0.16 -1 -1 0.25 0.0306991 0.0271118 177 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 7.47 vpr 62.52 MiB -1 -1 0.38 18440 13 0.24 -1 -1 32772 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 266 298 1 204 91 17 17 289 -1 unnamed_device 23.7 MiB 0.55 1241 13555 3513 7863 2179 62.5 MiB 0.12 0.00 7.54758 -141.687 -7.54758 7.54758 0.72 0.000854286 0.000791126 0.0596992 0.0551582 32 3611 29 6.55708e+06 349595 554710. 1919.41 3.37 0.347737 0.299512 22174 131602 -1 3200 47 1491 4937 948393 518556 6.4805 6.4805 -139.181 -6.4805 0 0 701300. 2426.64 0.19 0.32 0.12 -1 -1 0.19 0.0693327 0.0596512 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 5.12 vpr 63.22 MiB -1 -1 0.37 18616 14 0.34 -1 -1 32732 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1428 8326 1796 5639 891 63.2 MiB 0.09 0.00 8.11569 -168.134 -8.11569 8.11569 0.72 0.00100585 0.000931814 0.0394478 0.0364968 30 3796 30 6.55708e+06 446035 526063. 1820.29 1.34 0.175471 0.153354 21886 126133 -1 3091 17 1489 4196 196271 48070 7.14564 7.14564 -161.227 -7.14564 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0366495 0.0323323 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.13 vpr 62.80 MiB -1 -1 0.39 18556 11 0.31 -1 -1 32644 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 24.0 MiB 0.44 1190 5115 1015 3819 281 62.8 MiB 0.06 0.00 6.99314 -135.121 -6.99314 6.99314 0.66 0.000885323 0.000812505 0.0268328 0.0248973 34 3343 34 6.55708e+06 349595 585099. 2024.56 3.43 0.280346 0.240857 22462 138074 -1 2706 15 1147 3360 184930 43602 6.17838 6.17838 -131.048 -6.17838 0 0 742403. 2568.87 0.21 0.08 0.13 -1 -1 0.21 0.0294289 0.025932 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.48 vpr 62.05 MiB -1 -1 0.29 18028 13 0.16 -1 -1 32684 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1158 7108 1605 4699 804 62.1 MiB 0.07 0.00 6.94929 -157.648 -6.94929 6.94929 0.66 0.000728662 0.000675554 0.0287712 0.0266419 26 3238 27 6.55708e+06 289320 477104. 1650.88 2.35 0.123272 0.107975 21022 109990 -1 2815 19 1171 2928 203752 48160 6.41938 6.41938 -159.247 -6.41938 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0281922 0.0247382 138 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.46 vpr 62.59 MiB -1 -1 0.36 18584 14 0.23 -1 -1 32932 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1272 7751 1792 5305 654 62.6 MiB 0.08 0.00 8.06558 -167.325 -8.06558 8.06558 0.70 0.000778896 0.00071298 0.0346449 0.0319002 46 2774 14 6.55708e+06 337540 782063. 2706.10 3.81 0.310567 0.267218 24766 183262 -1 2551 15 1009 3223 153758 35156 6.9985 6.9985 -156.059 -6.9985 0 0 958460. 3316.47 0.26 0.07 0.16 -1 -1 0.26 0.0289931 0.0255939 179 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 13.62 vpr 63.35 MiB -1 -1 0.29 19004 15 0.49 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 334 366 1 261 98 17 17 289 -1 unnamed_device 24.5 MiB 0.36 1649 12023 2996 7449 1578 63.4 MiB 0.13 0.00 8.8435 -186.31 -8.8435 8.8435 0.66 0.00107035 0.000990631 0.0624142 0.0577286 30 4536 26 6.55708e+06 409870 526063. 1820.29 9.86 0.379183 0.329099 21886 126133 -1 3566 20 1759 4992 238655 56450 7.96775 7.96775 -180.251 -7.96775 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.043953 0.0386303 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.41 vpr 61.92 MiB -1 -1 0.31 18036 11 0.21 -1 -1 32576 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 220 252 1 156 85 17 17 289 -1 unnamed_device 23.4 MiB 0.42 923 12361 3928 6475 1958 61.9 MiB 0.10 0.00 6.38603 -130.972 -6.38603 6.38603 0.65 0.000700842 0.000648839 0.0493874 0.0456532 34 2491 32 6.55708e+06 253155 585099. 2024.56 2.97 0.264463 0.228195 22462 138074 -1 2110 19 911 2752 144443 35106 5.66238 5.66238 -124.419 -5.66238 0 0 742403. 2568.87 0.21 0.07 0.10 -1 -1 0.21 0.0274291 0.0239401 129 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.83 vpr 62.45 MiB -1 -1 0.31 18068 12 0.23 -1 -1 33052 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 31 32 244 276 1 193 90 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1230 7326 1593 5044 689 62.4 MiB 0.07 0.00 6.98403 -147.666 -6.98403 6.98403 0.65 0.000782368 0.000720796 0.0313805 0.0290323 28 3516 50 6.55708e+06 325485 500653. 1732.36 4.53 0.301204 0.258329 21310 115450 -1 2955 19 1303 3623 214874 49641 6.20332 6.20332 -147.361 -6.20332 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.031144 0.0273487 157 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.49 vpr 62.75 MiB -1 -1 0.38 18440 12 0.29 -1 -1 32812 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1497 8199 1839 5577 783 62.7 MiB 0.09 0.00 7.33061 -158.742 -7.33061 7.33061 0.66 0.000983283 0.000901277 0.041433 0.0382761 30 4080 31 6.55708e+06 385760 526063. 1820.29 1.92 0.172874 0.150926 21886 126133 -1 3305 18 1524 4393 219896 50717 6.2807 6.2807 -150.986 -6.2807 0 0 666494. 2306.21 0.20 0.09 0.12 -1 -1 0.20 0.0375501 0.0330093 213 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.02 vpr 62.75 MiB -1 -1 0.38 18208 12 0.26 -1 -1 32720 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1401 7125 1520 5090 515 62.7 MiB 0.08 0.00 7.67704 -159.687 -7.67704 7.67704 0.72 0.000884856 0.000820011 0.0347355 0.0321419 44 3198 17 6.55708e+06 313430 742403. 2568.87 3.35 0.265474 0.228382 24478 177802 -1 2838 17 1094 3648 189143 43057 6.8013 6.8013 -153.15 -6.8013 0 0 937218. 3242.97 0.26 0.08 0.16 -1 -1 0.26 0.0318735 0.0280087 181 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.05 vpr 63.17 MiB -1 -1 0.37 18952 14 0.44 -1 -1 32788 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1702 7655 1606 5611 438 63.2 MiB 0.09 0.00 8.96309 -178.872 -8.96309 8.96309 0.65 0.00106517 0.000984944 0.0430028 0.0397569 36 4446 40 6.55708e+06 373705 612192. 2118.31 4.94 0.291894 0.252915 22750 144809 -1 3774 26 1687 5548 348015 84215 7.85922 7.85922 -171.104 -7.85922 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0533766 0.0466138 234 233 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 6.87 vpr 62.62 MiB -1 -1 0.34 18208 12 0.21 -1 -1 32692 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 23.6 MiB 0.58 1287 7575 1714 5483 378 62.6 MiB 0.08 0.00 7.47384 -141.76 -7.47384 7.47384 0.66 0.000827543 0.000768358 0.0358672 0.0332641 28 4066 44 6.55708e+06 301375 500653. 1732.36 3.29 0.170988 0.148932 21310 115450 -1 3020 16 1151 3483 224807 49833 6.70864 6.70864 -142.016 -6.70864 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0287627 0.0252936 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.43 vpr 62.00 MiB -1 -1 0.27 18112 11 0.22 -1 -1 32572 -1 -1 26 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 23.4 MiB 0.26 931 11989 3061 7291 1637 62.0 MiB 0.12 0.00 6.80335 -123.262 -6.80335 6.80335 0.70 0.000708249 0.000656497 0.0600735 0.0555404 26 2783 41 6.55708e+06 313430 477104. 1650.88 3.16 0.256794 0.22231 21022 109990 -1 2384 18 1199 3380 194509 48070 6.03064 6.03064 -121.748 -6.03064 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0271521 0.0237525 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 7.04 vpr 63.42 MiB -1 -1 0.42 19108 13 0.47 -1 -1 32796 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 24.4 MiB 0.44 1770 11816 2824 7429 1563 63.4 MiB 0.13 0.00 8.12254 -164.758 -8.12254 8.12254 0.62 0.00118232 0.00109323 0.0623435 0.0576257 38 4857 49 6.55708e+06 482200 638502. 2209.35 2.99 0.296442 0.258007 23326 155178 -1 3570 18 1882 6131 281111 68584 7.03004 7.03004 -154.314 -7.03004 0 0 851065. 2944.86 0.23 0.12 0.14 -1 -1 0.23 0.0445101 0.0391997 286 286 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 6.58 vpr 62.68 MiB -1 -1 0.33 18568 14 0.29 -1 -1 32708 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1247 12127 2952 7653 1522 62.7 MiB 0.12 0.00 7.99624 -158.799 -7.99624 7.99624 0.67 0.000925415 0.00085846 0.0571622 0.05274 30 3329 38 6.55708e+06 337540 526063. 1820.29 3.21 0.334589 0.287897 21886 126133 -1 2813 22 1397 3985 195094 45869 7.1207 7.1207 -152.799 -7.1207 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.039408 0.0344392 188 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 4.79 vpr 62.22 MiB -1 -1 0.34 18284 12 0.21 -1 -1 32572 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 229 261 1 178 89 17 17 289 -1 unnamed_device 23.6 MiB 0.19 1071 7217 1608 4614 995 62.2 MiB 0.07 0.00 7.1692 -152.502 -7.1692 7.1692 0.66 0.000748751 0.000693263 0.0302144 0.0278995 28 3141 42 6.55708e+06 301375 500653. 1732.36 1.63 0.148608 0.129689 21310 115450 -1 2655 16 1109 3044 186864 43877 6.1631 6.1631 -148.829 -6.1631 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0265625 0.0234285 144 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 10.59 vpr 62.77 MiB -1 -1 0.37 18324 13 0.33 -1 -1 32828 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1267 8934 2136 5911 887 62.8 MiB 0.09 0.00 7.70312 -157.904 -7.70312 7.70312 0.65 0.000686091 0.000628286 0.0406228 0.0375307 28 3687 38 6.55708e+06 313430 500653. 1732.36 7.02 0.27317 0.23603 21310 115450 -1 2943 16 1173 3501 210890 47929 6.8039 6.8039 -153.425 -6.8039 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0337138 0.0299089 169 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 5.38 vpr 63.05 MiB -1 -1 0.38 18844 13 0.31 -1 -1 32764 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1613 9323 2087 6739 497 63.0 MiB 0.11 0.00 7.89411 -162.823 -7.89411 7.89411 0.70 0.0010246 0.000948758 0.0497355 0.0460582 36 4188 19 6.55708e+06 421925 612192. 2118.31 1.67 0.206678 0.180853 22750 144809 -1 3509 18 1533 4694 254821 58773 6.6399 6.6399 -151.086 -6.6399 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0392454 0.0345598 233 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 6.97 vpr 62.77 MiB -1 -1 0.34 18192 11 0.24 -1 -1 32712 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 287 319 1 210 95 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1259 9167 2054 6526 587 62.8 MiB 0.09 0.00 6.6803 -129.394 -6.6803 6.6803 0.66 0.000922619 0.000851464 0.0424787 0.0392027 36 3457 44 6.55708e+06 397815 612192. 2118.31 3.42 0.27283 0.235916 22750 144809 -1 3054 30 1292 4283 378107 142282 5.99344 5.99344 -128.062 -5.99344 0 0 782063. 2706.10 0.29 0.09 0.15 -1 -1 0.29 0.0275602 0.0243962 201 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 12.46 vpr 62.81 MiB -1 -1 0.38 18564 15 0.36 -1 -1 32880 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 296 328 1 224 93 17 17 289 -1 unnamed_device 23.9 MiB 0.49 1412 8073 1941 5451 681 62.8 MiB 0.09 0.00 9.02973 -184.383 -9.02973 9.02973 0.66 0.000849193 0.000784271 0.0400935 0.0370074 28 3953 42 6.55708e+06 349595 500653. 1732.36 8.63 0.303043 0.261713 21310 115450 -1 3335 16 1632 4925 286354 65603 7.68815 7.68815 -174.435 -7.68815 0 0 612192. 2118.31 0.21 0.10 0.11 -1 -1 0.21 0.0341541 0.0300966 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 7.70 vpr 62.79 MiB -1 -1 0.39 18756 13 0.31 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 285 317 1 225 94 17 17 289 -1 unnamed_device 23.8 MiB 0.39 1398 9040 2290 6006 744 62.8 MiB 0.09 0.00 7.98903 -170.903 -7.98903 7.98903 0.67 0.000941271 0.00086744 0.0430056 0.0396919 44 3093 48 6.55708e+06 361650 742403. 2568.87 3.97 0.367577 0.31575 24478 177802 -1 2671 16 1128 3601 171553 39937 6.9195 6.9195 -158.404 -6.9195 0 0 937218. 3242.97 0.26 0.08 0.16 -1 -1 0.26 0.032829 0.0289263 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 4.81 vpr 62.38 MiB -1 -1 0.32 17964 12 0.20 -1 -1 32688 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 23.4 MiB 0.41 1189 8934 2259 5724 951 62.4 MiB 0.08 0.00 7.37281 -150.82 -7.37281 7.37281 0.66 0.000768189 0.000711615 0.0377237 0.0349173 28 3038 34 6.55708e+06 349595 500653. 1732.36 1.45 0.14532 0.126933 21310 115450 -1 2732 17 1165 3200 178344 41874 6.8405 6.8405 -151.077 -6.8405 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0277787 0.0244203 157 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.23 vpr 61.96 MiB -1 -1 0.31 18268 11 0.16 -1 -1 32768 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 23.4 MiB 0.17 1123 11059 2941 6474 1644 62.0 MiB 0.09 0.00 6.88435 -140.697 -6.88435 6.88435 0.66 0.000572992 0.000520893 0.0455112 0.0419847 34 2634 29 6.55708e+06 253155 585099. 2024.56 3.02 0.304333 0.262006 22462 138074 -1 2360 21 1072 2750 161134 37226 6.10198 6.10198 -137.057 -6.10198 0 0 742403. 2568.87 0.21 0.08 0.12 -1 -1 0.21 0.0309328 0.0270248 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.64 vpr 62.84 MiB -1 -1 0.28 18304 13 0.31 -1 -1 32860 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 294 326 1 225 92 17 17 289 -1 unnamed_device 23.9 MiB 0.53 1353 8165 1745 5313 1107 62.8 MiB 0.09 0.00 7.95223 -162.187 -7.95223 7.95223 0.65 0.000937816 0.000867724 0.0408044 0.0376858 30 3774 24 6.55708e+06 349595 526063. 1820.29 1.90 0.162766 0.142984 21886 126133 -1 3129 20 1574 5108 253820 58875 7.0397 7.0397 -155.244 -7.0397 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0388954 0.0340386 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 4.47 vpr 61.95 MiB -1 -1 0.28 18060 10 0.17 -1 -1 33040 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 29 32 219 251 1 165 88 17 17 289 -1 unnamed_device 23.4 MiB 0.20 979 6133 1235 4409 489 61.9 MiB 0.03 0.00 5.98168 -119.896 -5.98168 5.98168 0.71 0.000315526 0.000290093 0.011954 0.0109918 28 2713 32 6.55708e+06 325485 500653. 1732.36 1.40 0.109155 0.0940363 21310 115450 -1 2298 16 958 2674 168299 39337 5.32872 5.32872 -123.036 -5.32872 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0246193 0.0216549 137 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 7.02 vpr 62.59 MiB -1 -1 0.30 17944 14 0.19 -1 -1 32720 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 23.6 MiB 0.48 1013 10618 2901 6668 1049 62.6 MiB 0.10 0.00 8.01252 -164.615 -8.01252 8.01252 0.73 0.000757717 0.000700508 0.0443625 0.0410077 36 2974 27 6.55708e+06 289320 612192. 2118.31 3.44 0.253741 0.219328 22750 144809 -1 2347 16 1050 3010 159154 38815 7.10243 7.10243 -155.609 -7.10243 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0267851 0.0236156 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 12.02 vpr 62.75 MiB -1 -1 0.38 18484 13 0.26 -1 -1 32744 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1277 12063 3078 7002 1983 62.8 MiB 0.11 0.00 7.55489 -160.613 -7.55489 7.55489 0.66 0.000867666 0.000801714 0.0531847 0.0491316 28 4163 46 6.55708e+06 361650 500653. 1732.36 8.32 0.295695 0.25537 21310 115450 -1 3209 50 1508 4283 633378 328376 6.86804 6.86804 -161.481 -6.86804 0 0 612192. 2118.31 0.18 0.25 0.10 -1 -1 0.18 0.0735444 0.0632444 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.24 vpr 62.29 MiB -1 -1 0.32 18024 12 0.15 -1 -1 32760 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 31 32 225 257 1 175 88 17 17 289 -1 unnamed_device 23.7 MiB 0.28 972 13543 3543 8079 1921 62.3 MiB 0.11 0.00 6.46809 -135.985 -6.46809 6.46809 0.67 0.000559729 0.000513691 0.0527708 0.0488419 30 2556 39 6.55708e+06 301375 526063. 1820.29 2.93 0.279406 0.241426 21886 126133 -1 2210 15 953 2651 129918 31131 5.72972 5.72972 -132.873 -5.72972 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0244034 0.0215692 137 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.95 vpr 62.70 MiB -1 -1 0.37 18324 12 0.22 -1 -1 32840 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1357 6321 1305 4694 322 62.7 MiB 0.07 0.00 7.2805 -151.118 -7.2805 7.2805 0.66 0.000899021 0.000830646 0.0318539 0.0294227 36 3232 20 6.55708e+06 313430 612192. 2118.31 2.48 0.211936 0.182893 22750 144809 -1 2786 16 1222 3844 228616 50983 6.23184 6.23184 -141.588 -6.23184 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0319245 0.0280905 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.94 vpr 62.77 MiB -1 -1 0.40 18556 13 0.28 -1 -1 32760 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1315 14996 4191 8694 2111 62.8 MiB 0.14 0.00 7.68235 -156.61 -7.68235 7.68235 0.70 0.000927361 0.000858221 0.0711775 0.0658618 36 3681 47 6.55708e+06 349595 612192. 2118.31 4.17 0.361675 0.313621 22750 144809 -1 2885 15 1272 3943 212141 48883 6.8385 6.8385 -148.214 -6.8385 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0318766 0.0282643 191 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 7.84 vpr 62.09 MiB -1 -1 0.27 18028 11 0.17 -1 -1 32608 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 23.4 MiB 0.34 1156 7217 1433 5081 703 62.1 MiB 0.07 0.00 6.44106 -147.701 -6.44106 6.44106 0.66 0.000743994 0.000689181 0.0300113 0.0277912 26 3273 36 6.55708e+06 301375 477104. 1650.88 4.60 0.228366 0.197307 21022 109990 -1 2733 15 1095 3130 197849 44014 5.64872 5.64872 -140.63 -5.64872 0 0 585099. 2024.56 0.21 0.08 0.10 -1 -1 0.21 0.0248261 0.0219023 148 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.21 vpr 62.55 MiB -1 -1 0.32 17840 13 0.21 -1 -1 32648 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1221 12568 3500 6849 2219 62.6 MiB 0.12 0.00 7.53241 -157.665 -7.53241 7.53241 0.66 0.000829131 0.000768705 0.0565446 0.052343 34 3711 44 6.55708e+06 289320 585099. 2024.56 4.70 0.354705 0.306046 22462 138074 -1 2854 19 1197 3376 208775 48579 6.7229 6.7229 -154.751 -6.7229 0 0 742403. 2568.87 0.21 0.09 0.12 -1 -1 0.21 0.0325633 0.0284969 164 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.39 vpr 62.65 MiB -1 -1 0.23 18208 13 0.25 -1 -1 32856 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 23.8 MiB 0.76 1325 8372 1977 5648 747 62.6 MiB 0.09 0.00 7.93261 -169.937 -7.93261 7.93261 0.68 0.000914252 0.000847558 0.0403202 0.0373149 36 3145 18 6.55708e+06 337540 612192. 2118.31 1.57 0.213282 0.184954 22750 144809 -1 2792 16 1137 3209 161819 38585 7.1573 7.1573 -160.833 -7.1573 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0321905 0.0283911 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.00 vpr 62.43 MiB -1 -1 0.36 18212 11 0.19 -1 -1 33160 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 29 32 243 275 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.26 1095 12183 2952 7495 1736 62.4 MiB 0.11 0.00 6.38849 -124.147 -6.38849 6.38849 0.65 0.000789332 0.000728953 0.0535202 0.0494659 34 2951 30 6.55708e+06 313430 585099. 2024.56 3.61 0.315499 0.271314 22462 138074 -1 2461 18 1091 3235 228081 66634 5.42198 5.42198 -116.493 -5.42198 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.030334 0.0265352 159 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.18 vpr 63.21 MiB -1 -1 0.30 18796 14 0.35 -1 -1 33208 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 318 350 1 250 98 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1560 8198 1613 5991 594 63.2 MiB 0.09 0.00 8.39904 -183.874 -8.39904 8.39904 0.67 0.00102517 0.000948562 0.0412368 0.0381517 30 4322 32 6.55708e+06 409870 526063. 1820.29 1.56 0.18587 0.162496 21886 126133 -1 3416 19 1679 5045 238655 56671 7.24856 7.24856 -174.08 -7.24856 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.040797 0.0358846 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.40 vpr 61.93 MiB -1 -1 0.29 17788 12 0.15 -1 -1 32556 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63420 31 32 222 254 1 184 89 17 17 289 -1 unnamed_device 23.3 MiB 0.26 937 6029 1160 4001 868 61.9 MiB 0.06 0.00 6.96386 -146.099 -6.96386 6.96386 0.66 0.000704468 0.000652268 0.024131 0.0223101 30 2769 31 6.55708e+06 313430 526063. 1820.29 3.19 0.241845 0.207768 21886 126133 -1 2184 19 979 2530 133098 32980 6.13718 6.13718 -138.917 -6.13718 0 0 666494. 2306.21 0.19 0.07 0.13 -1 -1 0.19 0.0281374 0.0246526 139 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 13.16 vpr 62.83 MiB -1 -1 0.38 19048 13 0.29 -1 -1 32840 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 282 314 1 219 93 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1427 9543 2297 6228 1018 62.8 MiB 0.10 0.00 7.70698 -157.067 -7.70698 7.70698 0.66 0.00091609 0.000848359 0.0453239 0.0419393 28 4355 33 6.55708e+06 349595 500653. 1732.36 9.52 0.324219 0.280793 21310 115450 -1 3400 18 1733 5425 348740 79446 6.70864 6.70864 -153.768 -6.70864 0 0 612192. 2118.31 0.22 0.11 0.10 -1 -1 0.22 0.034608 0.0303541 190 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.69 vpr 62.48 MiB -1 -1 0.35 18280 13 0.20 -1 -1 32528 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.32 1175 6723 1451 4940 332 62.5 MiB 0.07 0.00 7.59104 -161.75 -7.59104 7.59104 0.71 0.000750229 0.000695437 0.0280166 0.0259325 40 2354 17 6.55708e+06 313430 666494. 2306.21 3.22 0.286223 0.245759 23614 160646 -1 2309 19 977 2546 136667 31608 6.4381 6.4381 -149.953 -6.4381 0 0 872365. 3018.56 0.23 0.07 0.15 -1 -1 0.23 0.0294618 0.0258433 151 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 5.40 vpr 62.55 MiB -1 -1 0.37 18456 12 0.23 -1 -1 32764 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 269 301 1 198 90 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1330 9135 2220 6292 623 62.6 MiB 0.10 0.00 6.98077 -149.377 -6.98077 6.98077 0.68 0.00104939 0.000966485 0.0467986 0.0430993 30 3422 46 6.55708e+06 313430 526063. 1820.29 1.84 0.191402 0.166808 21886 126133 -1 2714 29 1134 3876 337265 140345 6.43304 6.43304 -147.012 -6.43304 0 0 666494. 2306.21 0.20 0.14 0.11 -1 -1 0.20 0.0483723 0.0419495 177 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 20.90 vpr 62.87 MiB -1 -1 0.43 19028 15 0.51 -1 -1 33140 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 350 382 1 271 100 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1801 9380 2328 6382 670 62.9 MiB 0.11 0.00 8.42612 -171.773 -8.42612 8.42612 0.63 0.00113796 0.00105151 0.0508282 0.0469256 30 4852 37 6.55708e+06 433980 526063. 1820.29 17.05 0.505037 0.434971 21886 126133 -1 4091 21 2438 8231 462298 101679 7.41256 7.41256 -169.461 -7.41256 0 0 666494. 2306.21 0.19 0.15 0.11 -1 -1 0.19 0.0495155 0.0434374 256 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 5.71 vpr 61.72 MiB -1 -1 0.28 17564 10 0.11 -1 -1 32548 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63200 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 23.1 MiB 0.11 895 9024 2291 5391 1342 61.7 MiB 0.07 0.00 5.25257 -121.184 -5.25257 5.25257 0.66 0.000530729 0.000489658 0.031241 0.0289814 28 2316 41 6.55708e+06 216990 500653. 1732.36 2.81 0.175344 0.151112 21310 115450 -1 2035 18 726 1829 113845 26006 4.8312 4.8312 -121.576 -4.8312 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0211631 0.0184902 92 86 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.44 vpr 61.95 MiB -1 -1 0.32 17980 13 0.21 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 23.3 MiB 0.18 1032 8919 2164 5388 1367 62.0 MiB 0.08 0.00 7.46729 -149.631 -7.46729 7.46729 0.66 0.000749839 0.000695075 0.03715 0.0344222 28 2742 21 6.55708e+06 301375 500653. 1732.36 1.25 0.120146 0.106054 21310 115450 -1 2581 16 1072 2952 169628 39515 6.88592 6.88592 -148.958 -6.88592 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0258277 0.0227163 143 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.83 vpr 62.50 MiB -1 -1 0.33 17932 12 0.19 -1 -1 32752 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 264 296 1 203 90 17 17 289 -1 unnamed_device 23.4 MiB 0.29 1234 5115 926 4061 128 62.5 MiB 0.06 0.00 7.54227 -156.123 -7.54227 7.54227 0.76 0.000847988 0.000787404 0.0247639 0.0229842 36 2946 20 6.55708e+06 313430 612192. 2118.31 3.36 0.262689 0.224635 22750 144809 -1 2609 20 1325 3857 197427 46812 6.31084 6.31084 -146.339 -6.31084 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.034274 0.029909 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.40 vpr 61.66 MiB -1 -1 0.29 17756 9 0.13 -1 -1 32456 -1 -1 24 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 25 32 183 215 1 140 81 17 17 289 -1 unnamed_device 23.0 MiB 0.18 725 12156 3385 6978 1793 61.7 MiB 0.09 0.00 5.27745 -95.2043 -5.27745 5.27745 0.71 0.000610813 0.000564715 0.0444208 0.0411181 26 2187 24 6.55708e+06 289320 477104. 1650.88 3.32 0.209521 0.180702 21022 109990 -1 1846 19 919 2656 157364 37938 4.9534 4.9534 -96.7502 -4.9534 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0238207 0.0207714 111 110 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 6.41 vpr 62.86 MiB -1 -1 0.33 18524 12 0.31 -1 -1 32928 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1424 11419 2633 7905 881 62.9 MiB 0.11 0.00 7.34317 -159.962 -7.34317 7.34317 0.67 0.000960725 0.000890306 0.0528701 0.0488353 36 3763 23 6.55708e+06 397815 612192. 2118.31 2.82 0.245813 0.21378 22750 144809 -1 3168 17 1492 4298 232708 54498 6.31284 6.31284 -150.037 -6.31284 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.034894 0.0307185 212 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.30 vpr 62.79 MiB -1 -1 0.36 19020 13 0.30 -1 -1 32720 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 290 322 1 228 94 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1528 10531 2641 6672 1218 62.8 MiB 0.11 0.00 8.32074 -170.063 -8.32074 8.32074 0.66 0.000952663 0.000882267 0.0508579 0.0470144 48 3177 16 6.55708e+06 373705 816265. 2824.45 3.59 0.305023 0.263482 25054 189045 -1 2972 15 1138 3521 197311 44613 7.1991 7.1991 -157.572 -7.1991 0 0 986792. 3414.50 0.27 0.08 0.17 -1 -1 0.27 0.0319127 0.0281657 200 199 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.38 vpr 62.99 MiB -1 -1 0.23 18212 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1021 13017 3203 8186 1628 63.0 MiB 0.13 0.00 5.56529 -159.911 -5.56529 5.56529 0.67 0.000564656 0.000519284 0.0423247 0.0388847 32 2485 24 6.64007e+06 401856 554710. 1919.41 0.92 0.12894 0.11321 22834 132086 -1 2178 21 1579 2366 153039 36543 4.64968 4.64968 -151.131 -4.64968 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.028886 0.0252108 154 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.18 vpr 62.96 MiB -1 -1 0.26 18316 1 0.03 -1 -1 30364 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1071 13527 3636 8473 1418 63.0 MiB 0.13 0.00 4.97921 -144.408 -4.97921 4.97921 0.68 0.000708503 0.000658238 0.0527121 0.0489759 32 2399 23 6.64007e+06 313950 554710. 1919.41 0.86 0.137732 0.121714 22834 132086 -1 2149 20 1658 2519 162674 39380 4.22689 4.22689 -145.337 -4.22689 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0290445 0.0254102 141 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.99 vpr 62.54 MiB -1 -1 0.23 18224 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1084 15639 4927 8621 2091 62.5 MiB 0.14 0.00 4.35433 -126.133 -4.35433 4.35433 0.66 0.000627518 0.00058291 0.053444 0.0496888 32 2438 19 6.64007e+06 288834 554710. 1919.41 0.81 0.125882 0.11157 22834 132086 -1 2059 19 1091 1550 105201 24017 3.66183 3.66183 -123.368 -3.66183 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0241716 0.0211508 126 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.88 vpr 62.33 MiB -1 -1 0.23 18268 1 0.03 -1 -1 30316 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.6 MiB 0.16 931 15103 4868 7954 2281 62.3 MiB 0.11 0.00 4.52953 -121.776 -4.52953 4.52953 0.72 0.000637359 0.00059246 0.040172 0.0372385 32 2287 23 6.64007e+06 339066 554710. 1919.41 0.86 0.119615 0.105439 22834 132086 -1 1914 23 1465 2740 192952 43744 3.67063 3.67063 -116.076 -3.67063 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.027925 0.024214 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.04 vpr 62.68 MiB -1 -1 0.22 18248 1 0.03 -1 -1 30412 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.7 MiB 0.14 1007 10071 2662 6608 801 62.7 MiB 0.10 0.00 4.57112 -132.997 -4.57112 4.57112 0.66 0.00068063 0.000632753 0.0380719 0.0353738 32 2498 20 6.64007e+06 288834 554710. 1919.41 0.86 0.117295 0.103279 22834 132086 -1 2122 21 1503 2874 185659 42276 3.64943 3.64943 -130.19 -3.64943 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0280166 0.0244165 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.34 vpr 62.89 MiB -1 -1 0.20 18276 1 0.04 -1 -1 30300 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 23.8 MiB 0.19 1017 13373 3190 9207 976 62.9 MiB 0.13 0.00 3.5011 -120.17 -3.5011 3.5011 0.66 0.000716077 0.000664217 0.0456092 0.0423994 28 2759 36 6.64007e+06 426972 500653. 1732.36 1.10 0.148399 0.130385 21970 115934 -1 2279 18 1387 2237 156657 37609 2.89817 2.89817 -120.057 -2.89817 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0260007 0.0227426 142 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.94 vpr 62.30 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30636 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.15 699 11034 3536 5995 1503 62.3 MiB 0.09 0.00 3.75638 -102.609 -3.75638 3.75638 0.70 0.00055762 0.000518044 0.0388487 0.0361634 32 1595 18 6.64007e+06 238602 554710. 1919.41 0.78 0.101862 0.0899001 22834 132086 -1 1412 20 879 1541 105739 24721 3.09756 3.09756 -96.0776 -3.09756 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0221045 0.0191943 93 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.19 vpr 62.35 MiB -1 -1 0.23 17680 1 0.03 -1 -1 30088 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.12 827 11383 2423 8400 560 62.4 MiB 0.10 0.00 3.48559 -101.391 -3.48559 3.48559 0.69 0.000598102 0.000556408 0.0344567 0.032064 28 2163 36 6.64007e+06 389298 500653. 1732.36 1.03 0.118329 0.103569 21970 115934 -1 1858 21 1080 1973 129274 30214 2.87017 2.87017 -99.5446 -2.87017 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0246199 0.0214006 115 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.05 vpr 62.66 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30128 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 23.7 MiB 0.26 888 14123 4595 7521 2007 62.7 MiB 0.12 0.00 3.62422 -120.034 -3.62422 3.62422 0.77 0.000635386 0.000590538 0.0527369 0.0490371 32 1992 19 6.64007e+06 251160 554710. 1919.41 0.81 0.125321 0.111017 22834 132086 -1 1743 19 1121 1661 106825 24557 2.99817 2.99817 -113.252 -2.99817 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0243709 0.0212505 111 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.80 vpr 62.29 MiB -1 -1 0.22 18048 1 0.03 -1 -1 30084 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.7 MiB 0.19 874 11631 3631 6742 1258 62.3 MiB 0.11 0.00 3.92955 -127.77 -3.92955 3.92955 0.67 0.000622228 0.000579104 0.0434931 0.0404691 32 1957 19 6.64007e+06 213486 554710. 1919.41 0.83 0.115154 0.101749 22834 132086 -1 1753 19 1044 1681 109300 25609 2.90177 2.90177 -115.584 -2.90177 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0236075 0.0205692 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.77 vpr 62.62 MiB -1 -1 0.26 18204 1 0.03 -1 -1 30560 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.8 MiB 0.12 728 11571 3255 7389 927 62.6 MiB 0.11 0.00 4.13115 -112.218 -4.13115 4.13115 0.68 0.00061513 0.000571842 0.0448576 0.0417215 28 1735 19 6.64007e+06 213486 500653. 1732.36 0.88 0.118777 0.104872 21970 115934 -1 1482 19 805 1293 87516 20285 2.86597 2.86597 -102.428 -2.86597 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0234705 0.0204195 98 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.93 vpr 62.39 MiB -1 -1 0.19 18032 1 0.03 -1 -1 30256 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 23.8 MiB 0.27 793 12008 4621 6063 1324 62.4 MiB 0.11 0.00 3.82041 -120.517 -3.82041 3.82041 0.66 0.000601737 0.000555183 0.0421086 0.0391832 32 2253 40 6.64007e+06 226044 554710. 1919.41 0.91 0.13766 0.120576 22834 132086 -1 1803 21 1195 1619 115534 26931 3.04337 3.04337 -115.258 -3.04337 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0246278 0.0214503 109 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.19 vpr 62.84 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30368 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1104 18028 6323 9464 2241 62.8 MiB 0.17 0.00 4.4826 -145.148 -4.4826 4.4826 0.78 0.000527484 0.000484485 0.0545363 0.050086 32 2419 20 6.64007e+06 301392 554710. 1919.41 0.89 0.13583 0.119822 22834 132086 -1 2198 21 1658 2485 165389 37416 3.29783 3.29783 -129.319 -3.29783 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0286386 0.0250538 139 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.94 vpr 62.88 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30332 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.18 965 15215 3853 10047 1315 62.9 MiB 0.15 0.00 4.76344 -140.281 -4.76344 4.76344 0.67 0.000715299 0.000664368 0.0525343 0.048786 28 2304 23 6.64007e+06 389298 500653. 1732.36 0.95 0.137811 0.121794 21970 115934 -1 2045 22 1662 2823 167404 40668 3.88183 3.88183 -136.686 -3.88183 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0299715 0.0260779 134 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.57 vpr 62.00 MiB -1 -1 0.22 17848 1 0.03 -1 -1 30424 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.3 MiB 0.14 748 11118 2695 7379 1044 62.0 MiB 0.09 0.00 3.28519 -93.7186 -3.28519 3.28519 0.66 0.000536038 0.000497763 0.0353719 0.0328691 28 1645 23 6.64007e+06 263718 500653. 1732.36 0.76 0.0948634 0.0835772 21970 115934 -1 1486 16 782 1301 86789 20385 2.71577 2.71577 -91.5176 -2.71577 0 0 612192. 2118.31 0.18 0.05 0.12 -1 -1 0.18 0.017134 0.0150786 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.96 vpr 62.88 MiB -1 -1 0.23 18316 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 23.8 MiB 0.20 1002 9914 2245 7192 477 62.9 MiB 0.10 0.00 4.06227 -126.501 -4.06227 4.06227 0.66 0.00072018 0.000669071 0.0403336 0.0374945 32 2466 22 6.64007e+06 276276 554710. 1919.41 0.90 0.126341 0.111155 22834 132086 -1 2152 20 1479 2608 179323 41071 3.09436 3.09436 -120.061 -3.09436 0 0 701300. 2426.64 0.22 0.08 0.12 -1 -1 0.22 0.0285243 0.0248891 133 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.72 vpr 62.80 MiB -1 -1 0.17 18288 1 0.03 -1 -1 30076 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1138 14679 4370 8457 1852 62.8 MiB 0.14 0.00 4.43584 -143.418 -4.43584 4.43584 0.67 0.00068932 0.000641062 0.054757 0.0508591 30 2626 19 6.64007e+06 288834 526063. 1820.29 2.64 0.214941 0.187495 22546 126617 -1 2242 21 1375 2016 134012 29343 3.26883 3.26883 -128.611 -3.26883 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0282101 0.0246252 138 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.63 vpr 62.70 MiB -1 -1 0.22 18196 1 0.03 -1 -1 30304 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.8 MiB 0.14 793 7443 1484 5603 356 62.7 MiB 0.07 0.00 2.85064 -101.719 -2.85064 2.85064 0.67 0.000649204 0.000602918 0.0250789 0.0233031 30 1881 18 6.64007e+06 364182 526063. 1820.29 0.80 0.0962491 0.0843251 22546 126617 -1 1524 20 1018 1637 84819 20502 2.06951 2.06951 -94.0823 -2.06951 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0260411 0.0226219 110 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.39 vpr 62.02 MiB -1 -1 0.17 17960 1 0.03 -1 -1 30052 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.5 MiB 0.07 601 7249 1675 5111 463 62.0 MiB 0.06 0.00 2.38033 -78.5571 -2.38033 2.38033 0.66 0.000502008 0.000467856 0.0236251 0.0220059 28 1432 21 6.64007e+06 188370 500653. 1732.36 0.74 0.081619 0.0713844 21970 115934 -1 1285 21 703 1012 85737 19690 2.04611 2.04611 -83.9383 -2.04611 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0201613 0.0174403 81 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.78 vpr 62.51 MiB -1 -1 0.18 18104 1 0.03 -1 -1 30360 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 0.27 927 14123 4588 7430 2105 62.5 MiB 0.13 0.00 4.95484 -148.86 -4.95484 4.95484 0.66 0.000608806 0.000566243 0.049797 0.0463098 30 2054 21 6.64007e+06 251160 526063. 1820.29 0.80 0.121527 0.107609 22546 126617 -1 1848 20 956 1399 83300 19321 3.50023 3.50023 -130.959 -3.50023 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0294136 0.0257677 128 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.68 vpr 62.67 MiB -1 -1 0.23 18252 1 0.04 -1 -1 30396 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.6 MiB 0.12 927 7007 1409 5318 280 62.7 MiB 0.07 0.00 4.20815 -131.502 -4.20815 4.20815 0.66 0.000697873 0.000648775 0.0249723 0.0231817 30 2145 21 6.64007e+06 389298 526063. 1820.29 0.83 0.106763 0.0933829 22546 126617 -1 1871 22 1181 1998 116468 26613 3.49343 3.49343 -124.596 -3.49343 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0292163 0.0254292 135 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.13 vpr 63.10 MiB -1 -1 0.26 18124 1 0.03 -1 -1 30284 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1165 13949 4134 8420 1395 63.1 MiB 0.14 0.00 4.61182 -142.746 -4.61182 4.61182 0.67 0.000725301 0.000674225 0.0535353 0.0496776 32 2716 19 6.64007e+06 313950 554710. 1919.41 0.87 0.134757 0.119306 22834 132086 -1 2294 18 1476 2310 151067 35062 3.86002 3.86002 -132.307 -3.86002 0 0 701300. 2426.64 0.22 0.07 0.14 -1 -1 0.22 0.0261197 0.0233185 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 5.40 vpr 61.68 MiB -1 -1 0.21 18044 1 0.03 -1 -1 30592 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63164 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.1 MiB 0.16 372 9836 3040 4897 1899 61.7 MiB 0.06 0.00 2.3975 -64.4977 -2.3975 2.3975 0.67 0.000425582 0.000395587 0.0278256 0.0258935 34 906 24 6.64007e+06 226044 585099. 2024.56 2.53 0.139639 0.120599 23122 138558 -1 765 15 510 696 40243 12227 1.85511 1.85511 -61.8909 -1.85511 0 0 742403. 2568.87 0.21 0.04 0.13 -1 -1 0.21 0.0139958 0.0122676 77 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 5.44 vpr 62.41 MiB -1 -1 0.23 17720 1 0.03 -1 -1 30316 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.12 995 9571 2665 6351 555 62.4 MiB 0.09 0.00 4.78226 -126.055 -4.78226 4.78226 0.66 0.000613588 0.000569871 0.0339607 0.031584 28 2148 21 6.64007e+06 263718 500653. 1732.36 2.47 0.188996 0.163661 21970 115934 -1 1974 21 1150 2159 136149 31256 3.72363 3.72363 -120.986 -3.72363 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0164745 0.0146862 118 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.64 vpr 61.72 MiB -1 -1 0.15 17412 1 0.03 -1 -1 30168 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63204 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.0 MiB 0.09 542 9374 3354 4039 1981 61.7 MiB 0.06 0.00 2.60773 -75.9678 -2.60773 2.60773 0.66 0.000423044 0.000392845 0.0249885 0.0232056 26 1286 38 6.64007e+06 175812 477104. 1650.88 2.01 0.131561 0.113766 21682 110474 -1 1078 13 466 537 40953 9922 2.06131 2.06131 -73.6644 -2.06131 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0125309 0.0110413 79 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.16 vpr 62.37 MiB -1 -1 0.22 17900 1 0.03 -1 -1 29952 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.6 MiB 0.11 888 9892 2278 7158 456 62.4 MiB 0.09 0.00 4.63801 -125.739 -4.63801 4.63801 0.66 0.000630477 0.000586679 0.0314642 0.0292551 26 2284 26 6.64007e+06 376740 477104. 1650.88 2.33 0.181768 0.157291 21682 110474 -1 1858 22 1109 1983 144744 33533 3.81383 3.81383 -119.339 -3.81383 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0269325 0.0234466 123 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.52 vpr 62.44 MiB -1 -1 0.19 17752 1 0.03 -1 -1 30380 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.7 MiB 0.11 1023 7871 1717 5540 614 62.4 MiB 0.08 0.00 3.86807 -111.494 -3.86807 3.86807 0.69 0.00063496 0.000590658 0.0252786 0.0235107 30 2195 22 6.64007e+06 389298 526063. 1820.29 1.70 0.171786 0.148222 22546 126617 -1 1865 18 997 1812 96454 22629 2.80997 2.80997 -103.812 -2.80997 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0233619 0.0204568 128 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.98 vpr 62.82 MiB -1 -1 0.23 18256 1 0.02 -1 -1 30344 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1020 17431 5202 10159 2070 62.8 MiB 0.16 0.00 4.78258 -136.405 -4.78258 4.78258 0.64 0.000674347 0.00062632 0.0597799 0.0554699 32 2211 20 6.64007e+06 339066 554710. 1919.41 0.82 0.138352 0.122806 22834 132086 -1 1999 22 1307 2307 139998 33525 3.95603 3.95603 -130.892 -3.95603 0 0 701300. 2426.64 0.26 0.08 0.14 -1 -1 0.26 0.0293105 0.0255876 126 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.73 vpr 62.32 MiB -1 -1 0.22 18048 1 0.03 -1 -1 30088 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.10 785 11260 3393 5970 1897 62.3 MiB 0.10 0.00 3.03896 -100.907 -3.03896 3.03896 0.69 0.000601335 0.000560027 0.0412289 0.0383589 32 1803 19 6.64007e+06 200928 554710. 1919.41 0.82 0.110011 0.0970381 22834 132086 -1 1509 18 768 1281 82415 19190 2.69497 2.69497 -101.097 -2.69497 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.02201 0.0192229 101 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.72 vpr 62.09 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30140 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.4 MiB 0.10 760 10873 2730 7151 992 62.1 MiB 0.09 0.00 3.24119 -98.8846 -3.24119 3.24119 0.73 0.000421575 0.000381747 0.0318522 0.0294355 32 1618 23 6.64007e+06 288834 554710. 1919.41 0.82 0.108035 0.0945051 22834 132086 -1 1566 17 817 1243 85514 19258 2.68277 2.68277 -96.8564 -2.68277 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0197182 0.0172203 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.53 vpr 62.36 MiB -1 -1 0.24 18064 1 0.03 -1 -1 30056 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.07 598 14123 3741 8412 1970 62.4 MiB 0.12 0.00 3.43604 -92.6832 -3.43604 3.43604 0.66 0.000555858 0.000517602 0.0427299 0.039542 28 1721 21 6.64007e+06 288834 500653. 1732.36 0.79 0.109002 0.0960483 21970 115934 -1 1490 19 897 1577 103958 25003 2.68077 2.68077 -91.3985 -2.68077 0 0 612192. 2118.31 0.19 0.06 0.12 -1 -1 0.19 0.0226226 0.0197983 98 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.18 vpr 62.11 MiB -1 -1 0.22 17684 1 0.03 -1 -1 30280 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.3 MiB 0.10 743 5843 1254 4169 420 62.1 MiB 0.06 0.00 3.98815 -115.073 -3.98815 3.98815 0.66 0.000566335 0.000527466 0.0202277 0.0188328 30 1789 19 6.64007e+06 238602 526063. 1820.29 2.42 0.159717 0.137194 22546 126617 -1 1545 19 905 1489 79062 19142 2.74897 2.74897 -104.355 -2.74897 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0216871 0.0188936 110 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.56 vpr 62.27 MiB -1 -1 0.23 18032 1 0.03 -1 -1 30264 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.7 MiB 0.06 870 7728 1633 5460 635 62.3 MiB 0.07 0.00 3.60767 -107.985 -3.60767 3.60767 0.66 0.00058234 0.000542239 0.0243253 0.0226518 30 1852 20 6.64007e+06 339066 526063. 1820.29 0.78 0.0915017 0.0799551 22546 126617 -1 1604 20 683 1201 64521 14942 2.70157 2.70157 -101.758 -2.70157 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0215768 0.0188933 103 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.82 vpr 62.31 MiB -1 -1 0.23 17864 1 0.03 -1 -1 30404 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 23.7 MiB 0.18 695 8727 2118 5729 880 62.3 MiB 0.08 0.00 3.3589 -102.835 -3.3589 3.3589 0.74 0.000599258 0.000558063 0.0293364 0.0272972 28 1809 23 6.64007e+06 326508 500653. 1732.36 0.80 0.0996642 0.0871878 21970 115934 -1 1598 20 885 1313 76615 19126 2.49117 2.49117 -97.9731 -2.49117 0 0 612192. 2118.31 0.21 0.06 0.11 -1 -1 0.21 0.0243927 0.0212588 105 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.77 vpr 63.06 MiB -1 -1 0.19 18224 1 0.03 -1 -1 30572 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1108 10812 2420 7290 1102 63.1 MiB 0.11 0.00 4.35696 -124.357 -4.35696 4.35696 0.66 0.000738257 0.000685187 0.0357526 0.0332294 26 3426 39 6.64007e+06 477204 477104. 1650.88 1.92 0.144415 0.126533 21682 110474 -1 2530 19 1336 2472 192577 43808 3.82982 3.82982 -127.968 -3.82982 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0284709 0.0249443 151 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.95 vpr 63.05 MiB -1 -1 0.22 18224 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 24.2 MiB 0.18 971 9971 2311 7104 556 63.0 MiB 0.11 0.00 3.87558 -129.13 -3.87558 3.87558 0.66 0.000761998 0.000708277 0.0349548 0.0324563 26 2669 33 6.64007e+06 464646 477104. 1650.88 1.00 0.136595 0.119479 21682 110474 -1 2141 19 1539 2437 158729 37370 3.54497 3.54497 -129.363 -3.54497 0 0 585099. 2024.56 0.18 0.08 0.10 -1 -1 0.18 0.0289801 0.0253467 147 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.85 vpr 62.30 MiB -1 -1 0.21 18388 1 0.03 -1 -1 30152 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 23.7 MiB 0.33 962 12186 3847 6704 1635 62.3 MiB 0.11 0.00 4.35701 -128.587 -4.35701 4.35701 0.64 0.000595113 0.000553704 0.0428465 0.039845 32 2058 21 6.64007e+06 238602 554710. 1919.41 0.82 0.109154 0.0964222 22834 132086 -1 1817 18 977 1401 95494 21988 3.12563 3.12563 -115.954 -3.12563 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0226556 0.0198426 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.73 vpr 63.05 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30400 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1023 13933 4615 7223 2095 63.1 MiB 0.13 0.00 4.04757 -131.412 -4.04757 4.04757 0.66 0.000716938 0.00066506 0.0538306 0.049992 32 2494 18 6.64007e+06 313950 554710. 1919.41 2.66 0.2211 0.1923 22834 132086 -1 2105 20 1612 2777 194031 44279 3.15237 3.15237 -115.474 -3.15237 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0285599 0.0249028 138 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.75 vpr 62.60 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30440 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 24.0 MiB 0.52 1128 17687 5057 9627 3003 62.6 MiB 0.20 0.00 5.89333 -173.14 -5.89333 5.89333 0.66 0.00073074 0.000678316 0.0709825 0.0657142 32 3236 33 6.64007e+06 364182 554710. 1919.41 1.15 0.170247 0.150589 22834 132086 -1 2469 21 2342 3476 223308 54942 4.78815 4.78815 -164.404 -4.78815 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0302024 0.0263682 172 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.16 vpr 63.09 MiB -1 -1 0.26 18204 1 0.02 -1 -1 30388 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 24.2 MiB 0.42 1191 15768 5423 8594 1751 63.1 MiB 0.16 0.00 5.08361 -153.384 -5.08361 5.08361 0.66 0.000745469 0.000692213 0.061586 0.0572246 32 2716 22 6.64007e+06 339066 554710. 1919.41 0.88 0.149979 0.133048 22834 132086 -1 2377 22 1795 2845 225337 48102 4.51948 4.51948 -148.412 -4.51948 0 0 701300. 2426.64 0.20 0.09 0.13 -1 -1 0.20 0.03181 0.0277881 164 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.96 vpr 63.13 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30488 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1006 12661 3249 8412 1000 63.1 MiB 0.14 0.00 4.68524 -135.636 -4.68524 4.68524 0.67 0.000690648 0.000640877 0.0470083 0.043492 32 2355 20 6.64007e+06 389298 554710. 1919.41 0.83 0.127706 0.112566 22834 132086 -1 2083 21 944 1573 101119 23699 3.58023 3.58023 -126.148 -3.58023 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0287873 0.0251414 135 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.35 vpr 62.39 MiB -1 -1 0.22 17860 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 23.7 MiB 0.27 1073 14679 4707 8091 1881 62.4 MiB 0.14 0.00 4.36796 -119.855 -4.36796 4.36796 0.69 0.000619261 0.000575432 0.0493257 0.0458664 26 2749 26 6.64007e+06 288834 477104. 1650.88 2.24 0.190623 0.166082 21682 110474 -1 2275 22 1385 2049 156725 35071 3.92503 3.92503 -125.203 -3.92503 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0315533 0.02744 119 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.05 vpr 63.03 MiB -1 -1 0.25 18512 1 0.03 -1 -1 30380 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 24.6 MiB 0.22 1249 19868 5433 11877 2558 63.0 MiB 0.19 0.00 5.1415 -166.814 -5.1415 5.1415 0.69 0.00086197 0.000801405 0.0735676 0.0683622 32 2828 25 6.64007e+06 502320 554710. 1919.41 0.90 0.179365 0.158798 22834 132086 -1 2459 19 1579 2444 152376 34828 3.91929 3.91929 -146.959 -3.91929 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0331301 0.0289357 174 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.60 vpr 62.26 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30156 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.6 MiB 0.12 803 5025 1005 3649 371 62.3 MiB 0.05 0.00 3.83987 -104.278 -3.83987 3.83987 0.69 0.000562594 0.000523459 0.0174175 0.0162101 30 1786 19 6.64007e+06 263718 526063. 1820.29 0.81 0.0823617 0.0716063 22546 126617 -1 1640 18 794 1429 83385 18942 2.83677 2.83677 -98.8728 -2.83677 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0205533 0.0179074 101 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.66 vpr 62.79 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30224 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1162 10228 2647 6642 939 62.8 MiB 0.13 0.00 5.14752 -155.108 -5.14752 5.14752 0.75 0.000686913 0.00063913 0.0382271 0.0354898 26 2969 31 6.64007e+06 313950 477104. 1650.88 1.52 0.131748 0.115687 21682 110474 -1 2516 19 1413 2079 155667 35015 4.39628 4.39628 -150.288 -4.39628 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0264779 0.023167 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.56 vpr 62.79 MiB -1 -1 0.22 18356 1 0.03 -1 -1 30360 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 23.7 MiB 0.19 884 8755 1783 6202 770 62.8 MiB 0.09 0.00 3.97129 -116.286 -3.97129 3.97129 0.67 0.000695023 0.000644999 0.0298557 0.0277429 30 2199 23 6.64007e+06 414414 526063. 1820.29 2.66 0.197784 0.170743 22546 126617 -1 1729 19 894 1557 79184 20282 3.00716 3.00716 -105.065 -3.00716 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0264503 0.0231635 131 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.75 vpr 62.49 MiB -1 -1 0.22 17768 1 0.03 -1 -1 30108 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.8 MiB 0.11 912 5938 1237 4353 348 62.5 MiB 0.07 0.00 4.13756 -120.743 -4.13756 4.13756 0.66 0.00062453 0.00058063 0.0212191 0.0197314 32 2242 21 6.64007e+06 301392 554710. 1919.41 0.86 0.0977065 0.0853562 22834 132086 -1 1917 19 1172 2160 138053 31963 3.58142 3.58142 -118.401 -3.58142 0 0 701300. 2426.64 0.26 0.08 0.10 -1 -1 0.26 0.0304189 0.0265365 123 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.96 vpr 62.93 MiB -1 -1 0.23 18276 1 0.03 -1 -1 30248 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1010 13933 3725 7818 2390 62.9 MiB 0.14 0.00 4.75998 -138.258 -4.75998 4.75998 0.66 0.000699845 0.000648416 0.0528734 0.048907 32 2399 17 6.64007e+06 301392 554710. 1919.41 0.86 0.132816 0.117603 22834 132086 -1 2066 21 1220 1691 122509 28327 3.22937 3.22937 -122.017 -3.22937 0 0 701300. 2426.64 0.20 0.07 0.09 -1 -1 0.20 0.028709 0.025031 138 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.73 vpr 62.95 MiB -1 -1 0.21 18228 1 0.03 -1 -1 30312 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1025 10827 2395 7683 749 63.0 MiB 0.11 0.00 3.7957 -125.338 -3.7957 3.7957 0.66 0.00071358 0.00066305 0.0376309 0.034973 26 2743 22 6.64007e+06 401856 477104. 1650.88 2.73 0.192326 0.166996 21682 110474 -1 2294 21 1421 2427 174311 39299 3.11037 3.11037 -123.615 -3.11037 0 0 585099. 2024.56 0.21 0.08 0.12 -1 -1 0.21 0.0292806 0.0255171 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.90 vpr 63.01 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1100 11381 2833 7714 834 63.0 MiB 0.12 0.00 4.776 -146.002 -4.776 4.776 0.66 0.000694827 0.00063395 0.0344077 0.0317627 30 2323 18 6.64007e+06 464646 526063. 1820.29 0.82 0.120354 0.104855 22546 126617 -1 2024 20 953 1446 75237 18047 3.35083 3.35083 -126.151 -3.35083 0 0 666494. 2306.21 0.20 0.06 0.14 -1 -1 0.20 0.0293384 0.0256248 145 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.66 vpr 62.48 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30288 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.10 831 7023 1481 5311 231 62.5 MiB 0.08 0.00 4.19967 -120.534 -4.19967 4.19967 0.66 0.000639319 0.000594248 0.0236421 0.0219592 30 2034 22 6.64007e+06 364182 526063. 1820.29 0.85 0.0998906 0.087179 22546 126617 -1 1614 21 1040 1872 100357 23807 3.57043 3.57043 -112.869 -3.57043 0 0 666494. 2306.21 0.19 0.04 0.09 -1 -1 0.19 0.0146551 0.0129876 122 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.96 vpr 62.97 MiB -1 -1 0.18 18324 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1052 7888 1681 5591 616 63.0 MiB 0.08 0.00 5.2222 -143.082 -5.2222 5.2222 0.66 0.000662635 0.000614811 0.0289617 0.0269512 28 2639 22 6.64007e+06 301392 500653. 1732.36 0.87 0.10784 0.0945078 21970 115934 -1 2239 17 1340 1967 134731 31386 3.71362 3.71362 -131.242 -3.71362 0 0 612192. 2118.31 0.18 0.07 0.14 -1 -1 0.18 0.0234716 0.0206182 133 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.09 vpr 63.25 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30360 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 24.4 MiB 0.36 1063 10423 2679 6644 1100 63.3 MiB 0.11 0.00 5.14867 -149.83 -5.14867 5.14867 0.67 0.000723032 0.000671982 0.0410949 0.03818 32 2686 22 6.64007e+06 313950 554710. 1919.41 0.92 0.126934 0.111727 22834 132086 -1 2409 19 1510 2389 160710 37915 4.00948 4.00948 -139.798 -4.00948 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0278762 0.0243911 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.93 vpr 62.92 MiB -1 -1 0.21 18324 1 0.03 -1 -1 30272 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 24.1 MiB 0.21 998 9347 2521 6007 819 62.9 MiB 0.10 0.00 4.34527 -132.181 -4.34527 4.34527 0.66 0.000734365 0.000681395 0.0388488 0.0360642 32 2644 20 6.64007e+06 276276 554710. 1919.41 0.89 0.125171 0.110079 22834 132086 -1 2163 18 1402 2519 159715 37276 3.50943 3.50943 -128.166 -3.50943 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.027237 0.0238154 136 77 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.60 vpr 62.29 MiB -1 -1 0.22 17980 1 0.04 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.6 MiB 0.08 707 15103 5445 7308 2350 62.3 MiB 0.11 0.00 3.43127 -100.64 -3.43127 3.43127 0.66 0.000562111 0.000522871 0.0452226 0.0420691 30 1669 21 6.64007e+06 301392 526063. 1820.29 0.79 0.110679 0.0979217 22546 126617 -1 1410 19 742 1197 79773 17941 2.56677 2.56677 -90.9898 -2.56677 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0212664 0.0184866 97 23 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.98 vpr 62.69 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30148 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 23.9 MiB 0.27 879 16907 6072 8286 2549 62.7 MiB 0.15 0.00 4.05536 -136.666 -4.05536 4.05536 0.66 0.000671798 0.000624148 0.0621932 0.0577474 30 2363 22 6.64007e+06 276276 526063. 1820.29 0.88 0.14203 0.126064 22546 126617 -1 1963 18 1339 1924 128164 29238 3.32757 3.32757 -129.337 -3.32757 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0261352 0.0228659 127 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.31 vpr 62.74 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30328 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1389 17943 5716 10178 2049 62.7 MiB 0.20 0.00 5.4603 -164.178 -5.4603 5.4603 0.66 0.000765956 0.00071175 0.0684909 0.0636148 28 3504 25 6.64007e+06 364182 500653. 1732.36 2.85 0.267385 0.233414 21970 115934 -1 2796 23 2045 3229 234229 51765 4.64188 4.64188 -157.599 -4.64188 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0341994 0.029828 169 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.83 vpr 62.83 MiB -1 -1 0.24 18188 1 0.03 -1 -1 30388 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1016 14331 3274 9718 1339 62.8 MiB 0.13 0.00 4.34509 -136.539 -4.34509 4.34509 0.66 0.00068164 0.000632641 0.0471614 0.0438066 30 2229 19 6.64007e+06 401856 526063. 1820.29 0.81 0.126374 0.111662 22546 126617 -1 1863 19 994 1580 102791 22250 3.10256 3.10256 -116.251 -3.10256 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0261887 0.0228993 133 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.62 vpr 62.20 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30332 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.6 MiB 0.10 644 6718 1441 4611 666 62.2 MiB 0.07 0.00 3.45804 -101.577 -3.45804 3.45804 0.66 0.000591147 0.000550332 0.0222804 0.0207156 32 1698 21 6.64007e+06 326508 554710. 1919.41 0.80 0.0915729 0.0797555 22834 132086 -1 1490 19 949 1542 94421 23457 2.70277 2.70277 -98.9378 -2.70277 0 0 701300. 2426.64 0.20 0.06 0.14 -1 -1 0.20 0.0223852 0.0194941 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.45 vpr 62.96 MiB -1 -1 0.26 18460 1 0.03 -1 -1 30396 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1258 17023 5454 8906 2663 63.0 MiB 0.18 0.00 6.52766 -186.909 -6.52766 6.52766 0.74 0.000826025 0.000768345 0.071678 0.0665482 32 3239 24 6.64007e+06 339066 554710. 1919.41 1.01 0.173323 0.153699 22834 132086 -1 2640 21 2024 2853 204494 46202 5.44434 5.44434 -176.026 -5.44434 0 0 701300. 2426.64 0.20 0.09 0.13 -1 -1 0.20 0.0342184 0.0298577 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.14 vpr 62.69 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30408 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 23.7 MiB 0.16 911 6091 1101 4753 237 62.7 MiB 0.07 0.00 4.60401 -138.195 -4.60401 4.60401 0.76 0.000688111 0.000639576 0.0214453 0.0199632 26 2408 24 6.64007e+06 414414 477104. 1650.88 1.15 0.109255 0.095516 21682 110474 -1 2032 21 1490 2333 156428 36434 3.77103 3.77103 -130.469 -3.77103 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0279861 0.0244001 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.72 vpr 62.05 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30448 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.4 MiB 0.09 820 12375 3515 6889 1971 62.0 MiB 0.10 0.00 3.58247 -102.606 -3.58247 3.58247 0.66 0.000538951 0.000502413 0.036165 0.033666 26 1980 30 6.64007e+06 288834 477104. 1650.88 0.98 0.107956 0.0949562 21682 110474 -1 1821 19 887 1524 111639 25164 2.89497 2.89497 -103.885 -2.89497 0 0 585099. 2024.56 0.17 0.06 0.11 -1 -1 0.17 0.0205325 0.0178306 100 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.73 vpr 62.78 MiB -1 -1 0.24 18400 1 0.03 -1 -1 30144 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1051 10223 2392 7301 530 62.8 MiB 0.11 0.00 5.62381 -137.312 -5.62381 5.62381 0.66 0.000711596 0.000660572 0.0345979 0.0321748 32 2518 24 6.64007e+06 426972 554710. 1919.41 2.74 0.24064 0.207992 22834 132086 -1 2171 22 1308 2453 164918 36700 4.71868 4.71868 -136.031 -4.71868 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0302745 0.0264126 139 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.66 vpr 62.00 MiB -1 -1 0.21 17748 1 0.03 -1 -1 30124 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.3 MiB 0.10 692 7404 1537 5210 657 62.0 MiB 0.07 0.00 3.45624 -104.082 -3.45624 3.45624 0.66 0.000557963 0.000519551 0.0250325 0.0232554 28 2049 24 6.64007e+06 251160 500653. 1732.36 0.91 0.0934178 0.0816114 21970 115934 -1 1646 19 1091 1918 121122 30138 2.91397 2.91397 -107.034 -2.91397 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0212983 0.0185523 104 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.92 vpr 62.29 MiB -1 -1 0.22 17832 1 0.03 -1 -1 30084 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.7 MiB 0.12 661 13271 3491 8020 1760 62.3 MiB 0.11 0.00 4.08278 -107.388 -4.08278 4.08278 0.66 0.000602039 0.000560424 0.038555 0.0358183 26 2062 20 6.64007e+06 414414 477104. 1650.88 1.02 0.107451 0.0946273 21682 110474 -1 1617 21 1029 1765 107385 26371 3.22137 3.22137 -105.887 -3.22137 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0240242 0.0208417 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.17 vpr 63.08 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30320 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1040 14871 4665 7654 2552 63.1 MiB 0.14 0.00 4.65946 -136.342 -4.65946 4.65946 0.68 0.000691589 0.000642139 0.0558961 0.0518991 32 2493 25 6.64007e+06 326508 554710. 1919.41 0.90 0.146578 0.129535 22834 132086 -1 2225 21 1545 2329 154866 35209 3.58443 3.58443 -123.394 -3.58443 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0253495 0.0223877 139 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.26 vpr 62.91 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30360 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.9 MiB 0.19 791 5938 1168 4585 185 62.9 MiB 0.07 0.00 4.46745 -132.755 -4.46745 4.46745 0.65 0.000705607 0.000655368 0.0238855 0.0222189 30 1971 24 6.64007e+06 301392 526063. 1820.29 2.33 0.198582 0.170955 22546 126617 -1 1686 19 1164 1845 114531 26463 3.69283 3.69283 -126.907 -3.69283 0 0 666494. 2306.21 0.19 0.06 0.13 -1 -1 0.19 0.0270652 0.0236983 130 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.90 vpr 62.78 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30400 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 24.0 MiB 0.17 1028 16652 5035 9308 2309 62.8 MiB 0.15 0.00 4.7434 -142.045 -4.7434 4.7434 0.66 0.000844091 0.000779548 0.0585396 0.0543053 32 2433 20 6.64007e+06 351624 554710. 1919.41 0.87 0.140118 0.124251 22834 132086 -1 2181 18 1038 1785 133597 29133 3.69062 3.69062 -131.911 -3.69062 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0258939 0.0227132 133 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.36 vpr 62.30 MiB -1 -1 0.20 17912 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 23.7 MiB 0.28 745 12681 3505 7128 2048 62.3 MiB 0.11 0.00 4.79432 -130.688 -4.79432 4.79432 0.65 0.000591846 0.000550934 0.0449444 0.0418056 26 2345 22 6.64007e+06 213486 477104. 1650.88 1.29 0.117403 0.103691 21682 110474 -1 1909 21 1162 1601 123415 29052 3.57743 3.57743 -122.857 -3.57743 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0256995 0.0225582 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.97 vpr 62.60 MiB -1 -1 0.26 18184 1 0.03 -1 -1 30380 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.7 MiB 0.29 900 13966 4576 7232 2158 62.6 MiB 0.12 0.00 3.96736 -127.124 -3.96736 3.96736 0.66 0.0006359 0.000590055 0.0519454 0.0482348 32 2026 17 6.64007e+06 238602 554710. 1919.41 0.80 0.123033 0.109007 22834 132086 -1 1807 19 1202 1749 124457 27558 3.21857 3.21857 -118.219 -3.21857 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.024784 0.0216391 113 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.22 vpr 62.75 MiB -1 -1 0.26 18260 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.7 MiB 0.15 869 11759 2827 8114 818 62.8 MiB 0.11 0.00 3.56047 -98.9603 -3.56047 3.56047 0.66 0.00065496 0.000607705 0.037808 0.0350952 26 2387 27 6.64007e+06 414414 477104. 1650.88 1.27 0.122292 0.107321 21682 110474 -1 1918 19 1142 2056 143001 34435 2.91597 2.91597 -101.585 -2.91597 0 0 585099. 2024.56 0.19 0.07 0.10 -1 -1 0.19 0.0284274 0.0250012 123 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.88 vpr 62.39 MiB -1 -1 0.22 17956 1 0.03 -1 -1 30420 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.8 MiB 0.15 923 12623 3556 7108 1959 62.4 MiB 0.10 0.00 4.42192 -107.107 -4.42192 4.42192 0.72 0.00058451 0.000543065 0.0361688 0.0336292 26 2229 19 6.64007e+06 439530 477104. 1650.88 0.96 0.10392 0.0912833 21682 110474 -1 1849 19 1008 1743 122228 27424 3.61562 3.61562 -105.168 -3.61562 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0225607 0.0196592 115 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.10 vpr 62.65 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30512 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 23.8 MiB 0.13 685 9712 2247 6957 508 62.7 MiB 0.10 0.00 3.90078 -114.184 -3.90078 3.90078 0.66 0.000634986 0.000590593 0.0378811 0.0352412 28 1963 19 6.64007e+06 226044 500653. 1732.36 3.18 0.185803 0.160912 21970 115934 -1 1789 22 1400 2435 194018 45480 2.98097 2.98097 -109.97 -2.98097 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0267273 0.0231706 109 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.30 vpr 62.71 MiB -1 -1 0.24 18304 1 0.03 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 23.7 MiB 0.27 936 13105 4260 6168 2677 62.7 MiB 0.12 0.00 3.98936 -131.555 -3.98936 3.98936 0.72 0.000663646 0.000616741 0.0491437 0.0456681 32 2239 20 6.64007e+06 263718 554710. 1919.41 0.98 0.122171 0.108255 22834 132086 -1 1962 19 1286 1879 129465 29535 3.32603 3.32603 -126.53 -3.32603 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0272902 0.0239574 121 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.85 vpr 62.30 MiB -1 -1 0.22 17676 1 0.03 -1 -1 30528 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1072 16295 4636 9641 2018 62.3 MiB 0.15 0.00 4.60183 -132.105 -4.60183 4.60183 0.67 0.000639704 0.000595221 0.0502198 0.0467371 32 2390 21 6.64007e+06 401856 554710. 1919.41 0.84 0.124386 0.110256 22834 132086 -1 1993 19 1289 2315 142374 33933 3.74683 3.74683 -120.579 -3.74683 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0240165 0.020963 127 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.03 vpr 62.99 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30344 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1141 10618 2698 7154 766 63.0 MiB 0.12 0.00 5.38066 -169.108 -5.38066 5.38066 0.66 0.000706847 0.000657067 0.0412218 0.03834 32 2845 21 6.64007e+06 301392 554710. 1919.41 0.85 0.124138 0.109472 22834 132086 -1 2481 20 1517 2218 154934 35578 4.34488 4.34488 -156.254 -4.34488 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282044 0.0246684 146 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.97 vpr 62.88 MiB -1 -1 0.25 18316 1 0.03 -1 -1 30380 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1093 17423 4766 10394 2263 62.9 MiB 0.16 0.00 5.20872 -147.682 -5.20872 5.20872 0.67 0.000741131 0.000688459 0.0602164 0.0559043 32 2500 30 6.64007e+06 426972 554710. 1919.41 0.93 0.158716 0.140483 22834 132086 -1 2186 21 1268 2336 152601 35655 4.01948 4.01948 -136.855 -4.01948 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0305205 0.0266086 144 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.16 vpr 63.02 MiB -1 -1 0.24 18164 1 0.03 -1 -1 30364 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.1 MiB 0.17 1020 5976 1067 4592 317 63.0 MiB 0.07 0.00 4.48481 -139.253 -4.48481 4.48481 0.67 0.000745944 0.00069345 0.0218361 0.0202815 26 3164 36 6.64007e+06 464646 477104. 1650.88 2.13 0.130625 0.113635 21682 110474 -1 2547 19 1531 2648 211155 48182 3.93303 3.93303 -141.066 -3.93303 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0290155 0.0254848 140 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.78 vpr 62.15 MiB -1 -1 0.22 18072 1 0.03 -1 -1 30236 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.4 MiB 0.14 720 9706 2873 5961 872 62.1 MiB 0.09 0.00 3.87875 -113.748 -3.87875 3.87875 0.66 0.000583812 0.000544012 0.0342048 0.0318579 26 1992 21 6.64007e+06 238602 477104. 1650.88 0.91 0.102828 0.0903855 21682 110474 -1 1698 18 953 1613 112771 26555 2.90297 2.90297 -105.777 -2.90297 0 0 585099. 2024.56 0.20 0.06 0.10 -1 -1 0.20 0.0214233 0.0186758 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.89 vpr 62.84 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30508 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 23.8 MiB 0.20 943 11431 3023 6401 2007 62.8 MiB 0.12 0.00 4.78844 -139.402 -4.78844 4.78844 0.67 0.000733091 0.000681237 0.0471346 0.0438366 32 2212 20 6.64007e+06 288834 554710. 1919.41 0.88 0.127915 0.113042 22834 132086 -1 1966 20 1597 2426 179462 40072 3.71863 3.71863 -132.49 -3.71863 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0290045 0.0253484 138 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.92 vpr 62.98 MiB -1 -1 0.15 18220 1 0.02 -1 -1 30360 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1173 16170 4393 9836 1941 63.0 MiB 0.16 0.00 5.44166 -158.46 -5.44166 5.44166 0.66 0.000690061 0.000641379 0.0578456 0.0537506 26 2974 49 6.64007e+06 326508 477104. 1650.88 1.91 0.174192 0.153401 21682 110474 -1 2414 21 1521 2276 183268 40328 4.33689 4.33689 -148.154 -4.33689 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0283893 0.0248086 140 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.07 vpr 62.92 MiB -1 -1 0.21 18236 1 0.03 -1 -1 30068 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1216 15003 5067 8222 1714 62.9 MiB 0.14 0.00 5.37715 -156.166 -5.37715 5.37715 0.66 0.000677542 0.000629471 0.050768 0.0471658 30 2440 19 6.64007e+06 376740 526063. 1820.29 0.86 0.125684 0.11154 22546 126617 -1 2046 18 972 1556 95320 21315 4.16988 4.16988 -141.14 -4.16988 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.026626 0.0234799 148 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.94 vpr 62.93 MiB -1 -1 0.26 18328 1 0.03 -1 -1 30376 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 23.8 MiB 0.28 895 9815 2159 6479 1177 62.9 MiB 0.10 0.00 4.45681 -130.071 -4.45681 4.45681 0.66 0.00072306 0.000672249 0.0354602 0.0329888 32 2077 19 6.64007e+06 414414 554710. 1919.41 0.82 0.11936 0.104715 22834 132086 -1 1875 20 1234 2049 117187 28580 3.30083 3.30083 -119.653 -3.30083 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.028278 0.0246557 135 83 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.00 vpr 62.81 MiB -1 -1 0.24 18276 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 23.8 MiB 0.17 1069 14407 4171 8795 1441 62.8 MiB 0.14 0.00 4.99084 -144.739 -4.99084 4.99084 0.66 0.000713006 0.000662371 0.0577071 0.0536132 32 2668 20 6.64007e+06 263718 554710. 1919.41 0.88 0.140428 0.124472 22834 132086 -1 2353 19 1391 2494 178708 39579 3.75062 3.75062 -139.109 -3.75062 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0277684 0.0242314 134 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.99 MiB -1 -1 0.21 18380 1 0.03 -1 -1 30304 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 24.0 MiB 0.19 991 14168 3722 8736 1710 63.0 MiB 0.13 0.00 4.90164 -138.394 -4.90164 4.90164 0.66 0.000718379 0.000666763 0.051316 0.0476551 26 2358 19 6.64007e+06 389298 477104. 1650.88 0.78 0.134896 0.119141 21682 110474 -1 2059 21 1193 1929 132387 29914 3.62843 3.62843 -127.623 -3.62843 0 0 585099. 2024.56 0.19 0.07 0.10 -1 -1 0.19 0.0293232 0.0255165 132 85 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.60 vpr 62.02 MiB -1 -1 0.18 17768 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.4 MiB 0.09 698 12416 3955 6725 1736 62.0 MiB 0.10 0.00 3.88758 -112.734 -3.88758 3.88758 0.66 0.000559906 0.000521817 0.0426391 0.0397201 28 1776 22 6.64007e+06 188370 500653. 1732.36 0.84 0.108808 0.096227 21970 115934 -1 1610 16 827 1253 97467 22192 3.16737 3.16737 -109.621 -3.16737 0 0 612192. 2118.31 0.21 0.05 0.11 -1 -1 0.21 0.018766 0.0164389 96 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.11 vpr 62.92 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30284 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 23.9 MiB 0.26 964 13455 3168 8058 2229 62.9 MiB 0.13 0.00 4.65236 -138.008 -4.65236 4.65236 0.66 0.000722488 0.00067114 0.0467347 0.0434262 32 2266 21 6.64007e+06 401856 554710. 1919.41 0.87 0.131461 0.115992 22834 132086 -1 1834 21 1297 2159 133098 31359 3.72183 3.72183 -126.441 -3.72183 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0295291 0.0257377 132 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.97 vpr 62.83 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30332 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1060 10103 2308 6560 1235 62.8 MiB 0.11 0.00 4.84241 -152.382 -4.84241 4.84241 0.66 0.000759112 0.00070501 0.0434728 0.040385 32 2649 24 6.64007e+06 276276 554710. 1919.41 0.93 0.136489 0.120134 22834 132086 -1 2387 22 1966 3185 227280 52170 4.04423 4.04423 -149.366 -4.04423 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.032635 0.0284672 148 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.32 vpr 62.44 MiB -1 -1 0.23 18108 1 0.03 -1 -1 30376 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 23.8 MiB 0.31 933 13992 4098 8142 1752 62.4 MiB 0.12 0.00 4.31784 -124.298 -4.31784 4.31784 0.66 0.000581952 0.000541512 0.0461518 0.0429377 26 2333 27 6.64007e+06 251160 477104. 1650.88 2.30 0.175823 0.153222 21682 110474 -1 2014 20 1088 1443 117053 25629 3.30403 3.30403 -118.207 -3.30403 0 0 585099. 2024.56 0.18 0.06 0.12 -1 -1 0.18 0.0230189 0.0200404 109 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.57 vpr 62.16 MiB -1 -1 0.18 17612 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.5 MiB 0.10 781 9417 2297 6451 669 62.2 MiB 0.08 0.00 3.81035 -109.522 -3.81035 3.81035 0.66 0.000551855 0.000513156 0.0302212 0.028084 32 1805 21 6.64007e+06 263718 554710. 1919.41 0.80 0.0954543 0.0837192 22834 132086 -1 1623 22 1006 1686 116113 26730 2.91397 2.91397 -103.946 -2.91397 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0236493 0.0204754 106 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.85 vpr 62.98 MiB -1 -1 0.23 18408 1 0.03 -1 -1 30472 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 24.1 MiB 0.33 894 10542 2833 7069 640 63.0 MiB 0.11 0.00 5.11544 -156.533 -5.11544 5.11544 0.66 0.000549115 0.000503293 0.0338353 0.0311981 28 2905 29 6.64007e+06 326508 500653. 1732.36 2.69 0.222686 0.191903 21970 115934 -1 2270 21 1717 2234 150681 36479 4.29109 4.29109 -151.66 -4.29109 0 0 612192. 2118.31 0.18 0.08 0.12 -1 -1 0.18 0.0288812 0.0252269 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.05 vpr 63.05 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30260 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.2 MiB 0.36 1216 13953 3630 8615 1708 63.1 MiB 0.13 0.00 5.10413 -156.46 -5.10413 5.10413 0.72 0.000701539 0.000651523 0.0495363 0.0457296 26 3309 49 6.64007e+06 364182 477104. 1650.88 1.90 0.163914 0.143451 21682 110474 -1 2648 21 1678 2630 217673 46245 4.63868 4.63868 -154.565 -4.63868 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0286545 0.0250081 155 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.59 vpr 62.91 MiB -1 -1 0.20 18056 1 0.03 -1 -1 30192 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.0 MiB 0.12 1246 17036 4529 10969 1538 62.9 MiB 0.16 0.00 5.4761 -148.295 -5.4761 5.4761 0.66 0.000716131 0.000666066 0.05521 0.0513367 26 3134 35 6.64007e+06 452088 477104. 1650.88 1.52 0.15784 0.139458 21682 110474 -1 2607 21 1733 3199 243499 53638 4.55949 4.55949 -150.976 -4.55949 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0297583 0.0260027 153 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.76 vpr 62.76 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30408 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 874 9892 2506 6506 880 62.8 MiB 0.09 0.00 3.51924 -103.944 -3.51924 3.51924 0.72 0.000639098 0.000593211 0.031776 0.0295097 30 1855 19 6.64007e+06 401856 526063. 1820.29 0.80 0.105493 0.0925736 22546 126617 -1 1645 19 1016 1803 85739 21372 2.80477 2.80477 -98.9098 -2.80477 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.024114 0.0209844 121 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.63 vpr 62.04 MiB -1 -1 0.22 18108 1 0.03 -1 -1 30340 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.10 565 12120 3265 7503 1352 62.0 MiB 0.10 0.00 3.49724 -93.0073 -3.49724 3.49724 0.71 0.00055043 0.000512631 0.0414477 0.0385677 28 1552 21 6.64007e+06 263718 500653. 1732.36 0.78 0.104893 0.0926252 21970 115934 -1 1349 20 1009 1487 99406 23958 2.83997 2.83997 -92.1671 -2.83997 0 0 612192. 2118.31 0.21 0.06 0.11 -1 -1 0.21 0.0215616 0.0186939 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 6.04 vpr 62.86 MiB -1 -1 0.24 18576 1 0.03 -1 -1 30472 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1324 16572 5072 8808 2692 62.9 MiB 0.17 0.00 4.42635 -141.521 -4.42635 4.42635 0.68 0.000803326 0.000746269 0.0696354 0.0647307 32 3259 35 6.64007e+06 326508 554710. 1919.41 2.76 0.283774 0.246993 22834 132086 -1 2737 20 1821 3112 227397 48414 4.03623 4.03623 -137.329 -4.03623 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0321186 0.0280535 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.18 vpr 62.89 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30340 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1050 12371 3182 7852 1337 62.9 MiB 0.12 0.00 5.43386 -156.366 -5.43386 5.43386 0.71 0.000711657 0.000661541 0.0492338 0.0457626 32 2467 20 6.64007e+06 288834 554710. 1919.41 0.88 0.132164 0.116916 22834 132086 -1 2222 23 1450 2394 179772 39496 4.42648 4.42648 -147.66 -4.42648 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0317037 0.0275939 152 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.04 vpr 62.84 MiB -1 -1 0.22 18140 1 0.03 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 331 280 1 174 84 17 17 289 -1 unnamed_device 23.9 MiB 0.35 941 14175 4029 8632 1514 62.8 MiB 0.13 0.00 4.2933 -133.018 -4.2933 4.2933 0.70 0.000662045 0.000615556 0.0546323 0.0507716 32 2137 21 6.64007e+06 251160 554710. 1919.41 0.82 0.131338 0.116337 22834 132086 -1 2004 23 1337 1980 158485 34343 3.51963 3.51963 -132.516 -3.51963 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.028897 0.0250789 130 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.65 vpr 62.62 MiB -1 -1 0.21 18244 1 0.03 -1 -1 30288 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1025 10744 3084 7154 506 62.6 MiB 0.06 0.00 5.21217 -134.409 -5.21217 5.21217 0.68 0.000301918 0.000278377 0.0169059 0.0155644 30 2184 21 6.64007e+06 376740 526063. 1820.29 0.77 0.0956742 0.0830899 22546 126617 -1 1937 18 867 1471 89050 19926 3.73062 3.73062 -118.693 -3.73062 0 0 666494. 2306.21 0.21 0.06 0.14 -1 -1 0.21 0.0243458 0.0213013 126 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.82 vpr 62.88 MiB -1 -1 0.18 18184 1 0.03 -1 -1 30520 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1033 6757 1363 4872 522 62.9 MiB 0.08 0.00 5.06104 -138.99 -5.06104 5.06104 0.69 0.000663433 0.000620281 0.0242365 0.0225225 26 2574 21 6.64007e+06 426972 477104. 1650.88 0.90 0.109814 0.0956979 21682 110474 -1 2282 20 1591 2581 146564 35944 3.83083 3.83083 -132.863 -3.83083 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0288165 0.0251296 145 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.79 vpr 62.89 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30192 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1000 10173 2480 6565 1128 62.9 MiB 0.09 0.00 3.68089 -112.079 -3.68089 3.68089 0.67 0.000664771 0.000618977 0.0341121 0.0317509 32 2189 21 6.64007e+06 389298 554710. 1919.41 0.82 0.110655 0.0972447 22834 132086 -1 1934 21 992 1861 125297 27515 2.93217 2.93217 -104.52 -2.93217 0 0 701300. 2426.64 0.21 0.07 0.12 -1 -1 0.21 0.0268693 0.0233808 124 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.19 vpr 63.21 MiB -1 -1 0.23 18324 1 0.03 -1 -1 30436 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.3 MiB 0.35 1181 8207 1889 5862 456 63.2 MiB 0.10 0.00 5.21333 -162.921 -5.21333 5.21333 0.67 0.000704456 0.000654821 0.0316332 0.0294416 32 2916 22 6.64007e+06 313950 554710. 1919.41 0.95 0.108166 0.0951228 22834 132086 -1 2540 21 1769 2749 219470 47322 4.11269 4.11269 -146.472 -4.11269 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0302754 0.0265312 148 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.47 vpr 63.14 MiB -1 -1 0.22 18192 1 0.03 -1 -1 30264 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1091 17268 5141 9536 2591 63.1 MiB 0.16 0.00 4.75546 -148.32 -4.75546 4.75546 0.66 0.000565954 0.000519561 0.0543727 0.0502843 26 2685 30 6.64007e+06 452088 477104. 1650.88 1.39 0.156298 0.137798 21682 110474 -1 2255 18 1257 1979 128650 29661 3.48203 3.48203 -130.715 -3.48203 0 0 585099. 2024.56 0.22 0.07 0.13 -1 -1 0.22 0.0274558 0.0240298 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.55 vpr 62.29 MiB -1 -1 0.19 18060 1 0.03 -1 -1 30372 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.6 MiB 0.09 588 12030 3358 7039 1633 62.3 MiB 0.10 0.00 3.76255 -108.245 -3.76255 3.76255 0.66 0.000566384 0.000526631 0.0433966 0.040388 30 1348 20 6.64007e+06 213486 526063. 1820.29 0.80 0.110538 0.0977513 22546 126617 -1 1205 18 807 1162 78445 17743 2.56837 2.56837 -95.382 -2.56837 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0209901 0.018296 91 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.74 vpr 62.75 MiB -1 -1 0.18 18328 1 0.03 -1 -1 30528 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 310 266 1 176 85 17 17 289 -1 unnamed_device 23.8 MiB 0.23 778 6037 1272 4427 338 62.7 MiB 0.07 0.00 4.48879 -126.842 -4.48879 4.48879 0.66 0.000627478 0.000582269 0.0225285 0.0209372 32 2251 23 6.64007e+06 263718 554710. 1919.41 0.84 0.0979023 0.0852257 22834 132086 -1 1743 18 964 1268 93490 22694 3.24503 3.24503 -119.32 -3.24503 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.023208 0.0203368 118 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.98 vpr 62.77 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30436 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1008 6132 1183 4581 368 62.8 MiB 0.07 0.00 4.78944 -127.311 -4.78944 4.78944 0.66 0.000668195 0.000620284 0.0197348 0.0183524 26 2494 22 6.64007e+06 464646 477104. 1650.88 1.02 0.099024 0.0861208 21682 110474 -1 2169 20 1399 2498 165534 38412 3.93603 3.93603 -128.563 -3.93603 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0263111 0.0229567 129 33 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.76 vpr 62.39 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30288 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 23.8 MiB 0.29 764 14303 4579 7529 2195 62.4 MiB 0.12 0.00 4.38281 -116.371 -4.38281 4.38281 0.68 0.000560152 0.000520712 0.0462667 0.0429999 28 2083 19 6.64007e+06 276276 500653. 1732.36 2.69 0.19321 0.167323 21970 115934 -1 1681 20 1101 1443 96185 22508 3.23483 3.23483 -107.841 -3.23483 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0224875 0.0195556 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.64 vpr 62.31 MiB -1 -1 0.22 17928 1 0.03 -1 -1 30080 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 868 10406 2691 6847 868 62.3 MiB 0.09 0.00 3.9428 -121.707 -3.9428 3.9428 0.66 0.000493559 0.000454789 0.0364261 0.0338871 32 1810 20 6.64007e+06 213486 554710. 1919.41 0.81 0.104566 0.0922346 22834 132086 -1 1706 20 1156 2003 136026 30795 2.79857 2.79857 -109.128 -2.79857 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0232486 0.020219 108 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.88 vpr 63.01 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30232 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 23.9 MiB 0.17 875 8079 1601 6137 341 63.0 MiB 0.09 0.00 4.17918 -122.781 -4.17918 4.17918 0.66 0.000729704 0.000672506 0.0282794 0.0262532 28 2410 36 6.64007e+06 452088 500653. 1732.36 1.01 0.122877 0.107199 21970 115934 -1 1875 21 1356 2240 134886 34729 3.20157 3.20157 -114.587 -3.20157 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.02967 0.0258598 136 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.85 vpr 62.41 MiB -1 -1 0.22 17880 1 0.02 -1 -1 30380 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 23.8 MiB 0.24 883 11423 3367 6862 1194 62.4 MiB 0.10 0.00 4.01573 -121.888 -4.01573 4.01573 0.70 0.00042661 0.0003914 0.0304115 0.0279707 26 2117 20 6.64007e+06 251160 477104. 1650.88 0.81 0.0987452 0.0864634 21682 110474 -1 1747 20 1087 1540 101106 24211 3.08363 3.08363 -115.072 -3.08363 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0225978 0.0196492 107 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.00 vpr 62.84 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30036 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 23.8 MiB 0.17 851 8418 1678 5980 760 62.8 MiB 0.08 0.00 3.82753 -117.666 -3.82753 3.82753 0.69 0.000697985 0.000648356 0.0291472 0.0270844 28 2478 22 6.64007e+06 401856 500653. 1732.36 1.00 0.111733 0.0976573 21970 115934 -1 1955 23 1317 2265 161744 43770 2.98117 2.98117 -112.322 -2.98117 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0301765 0.0262185 127 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.76 vpr 62.88 MiB -1 -1 0.24 18228 1 0.03 -1 -1 30272 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 23.8 MiB 0.28 974 12839 3425 8126 1288 62.9 MiB 0.12 0.00 4.34696 -135.951 -4.34696 4.34696 0.83 0.0005777 0.000530686 0.0376217 0.0346385 32 2188 19 6.64007e+06 401856 554710. 1919.41 2.46 0.208883 0.180363 22834 132086 -1 1958 21 1309 1812 123981 28855 3.33103 3.33103 -127.587 -3.33103 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0306673 0.0267297 138 91 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.44 vpr 62.48 MiB -1 -1 0.23 17912 1 0.03 -1 -1 30240 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.7 MiB 0.20 712 8656 2009 6156 491 62.5 MiB 0.08 0.00 3.3851 -102.924 -3.3851 3.3851 0.72 0.000473262 0.000433696 0.0263381 0.0242121 28 2051 39 6.64007e+06 213486 500653. 1732.36 2.50 0.186324 0.160165 21970 115934 -1 1784 17 1002 1552 122933 29414 2.93417 2.93417 -107.966 -2.93417 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0217209 0.0189489 104 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.57 vpr 62.62 MiB -1 -1 0.16 17964 1 0.03 -1 -1 30248 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 23.9 MiB 0.25 948 9385 2467 6027 891 62.6 MiB 0.10 0.00 4.44818 -138.832 -4.44818 4.44818 0.68 0.000613477 0.000570458 0.0329626 0.0306849 32 2287 21 6.64007e+06 263718 554710. 1919.41 2.61 0.183405 0.158545 22834 132086 -1 2029 21 1119 1638 128993 28031 3.39203 3.39203 -129.192 -3.39203 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0251574 0.0218989 117 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.61 vpr 62.86 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1058 7767 1828 5291 648 62.9 MiB 0.08 0.00 4.73583 -140.794 -4.73583 4.73583 0.67 0.000657951 0.000611721 0.0289628 0.0269376 32 2491 22 6.64007e+06 288834 554710. 1919.41 2.53 0.21957 0.189553 22834 132086 -1 2097 21 1513 2026 141902 33771 3.92523 3.92523 -134.778 -3.92523 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0271269 0.0236507 130 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.80 vpr 62.81 MiB -1 -1 0.25 18436 1 0.04 -1 -1 30288 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 23.8 MiB 0.20 961 12753 3692 7785 1276 62.8 MiB 0.13 0.00 4.75755 -125.045 -4.75755 4.75755 0.61 0.000648149 0.000603068 0.0476574 0.0441108 32 1971 18 6.64007e+06 364182 554710. 1919.41 0.80 0.117254 0.103935 22834 132086 -1 1845 19 807 1354 87570 20360 3.28883 3.28883 -110.424 -3.28883 0 0 701300. 2426.64 0.22 0.06 0.12 -1 -1 0.22 0.0247627 0.021639 122 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.03 vpr 63.07 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30452 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 24.1 MiB 0.36 846 9643 2135 6651 857 63.1 MiB 0.10 0.00 5.52409 -167.953 -5.52409 5.52409 0.66 0.000753962 0.000699852 0.0400097 0.0371486 34 2787 38 6.64007e+06 301392 585099. 2024.56 1.88 0.207551 0.18 23122 138558 -1 1936 24 1573 2308 150807 38792 4.46809 4.46809 -156.232 -4.46809 0 0 742403. 2568.87 0.20 0.08 0.13 -1 -1 0.20 0.0343765 0.0299336 154 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.58 vpr 62.14 MiB -1 -1 0.21 17756 1 0.03 -1 -1 30052 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.4 MiB 0.09 599 7956 1801 5879 276 62.1 MiB 0.07 0.00 3.65226 -97.6941 -3.65226 3.65226 0.66 0.000548811 0.000512525 0.026813 0.0250556 32 1638 19 6.64007e+06 226044 554710. 1919.41 0.77 0.0896653 0.0786509 22834 132086 -1 1460 18 787 1272 92647 21532 2.73697 2.73697 -94.3223 -2.73697 0 0 701300. 2426.64 0.23 0.04 0.15 -1 -1 0.23 0.0188905 0.0167161 96 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.01 vpr 62.94 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 24.1 MiB 0.19 954 8873 1826 6622 425 62.9 MiB 0.09 0.00 4.24713 -140.193 -4.24713 4.24713 0.66 0.000784555 0.00072985 0.0336355 0.0312506 28 2572 31 6.64007e+06 426972 500653. 1732.36 1.03 0.1379 0.120538 21970 115934 -1 2175 22 1537 2339 173372 39376 3.93503 3.93503 -141.075 -3.93503 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.0324904 0.0283075 145 90 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.12 vpr 62.74 MiB -1 -1 0.25 18308 1 0.03 -1 -1 30132 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 23.9 MiB 0.29 874 12856 4533 6666 1657 62.7 MiB 0.12 0.00 3.54047 -123.335 -3.54047 3.54047 0.68 0.000711835 0.000660521 0.0548089 0.0509226 32 1825 21 6.64007e+06 213486 554710. 1919.41 0.85 0.13402 0.118757 22834 132086 -1 1655 20 1321 1938 116061 28088 3.01617 3.01617 -121.412 -3.01617 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0261777 0.0229321 114 96 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.86 vpr 62.78 MiB -1 -1 0.19 18276 1 0.03 -1 -1 30272 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1033 11265 2868 7471 926 62.8 MiB 0.11 0.00 4.43584 -135.56 -4.43584 4.43584 0.73 0.000712874 0.00066145 0.0390949 0.0363371 28 2229 14 6.64007e+06 401856 500653. 1732.36 0.82 0.114652 0.10114 21970 115934 -1 2115 16 925 1438 98496 22347 3.21363 3.21363 -121.41 -3.21363 0 0 612192. 2118.31 0.25 0.05 0.12 -1 -1 0.25 0.0215583 0.0192611 131 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.57 vpr 62.88 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1323 13963 4525 7204 2234 62.9 MiB 0.16 0.00 6.49387 -193.63 -6.49387 6.49387 0.66 0.000782723 0.000727718 0.0560906 0.0521202 30 3412 26 6.64007e+06 339066 526063. 1820.29 1.28 0.157553 0.139444 22546 126617 -1 2684 24 1644 2427 183612 38569 5.12274 5.12274 -170.078 -5.12274 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0357708 0.031241 170 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 5.06 vpr 62.04 MiB -1 -1 0.14 17948 1 0.02 -1 -1 30128 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 23.4 MiB 0.21 724 10744 2740 6987 1017 62.0 MiB 0.08 0.00 3.31307 -103.05 -3.31307 3.31307 0.66 0.000497945 0.000463198 0.0328291 0.03055 32 1572 19 6.64007e+06 226044 554710. 1919.41 2.21 0.164603 0.142215 22834 132086 -1 1483 13 658 840 62111 14307 2.32491 2.32491 -94.088 -2.32491 0 0 701300. 2426.64 0.27 0.04 0.14 -1 -1 0.27 0.0145103 0.0127651 87 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.84 vpr 62.14 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30452 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.4 MiB 0.11 653 10370 2942 6125 1303 62.1 MiB 0.09 0.00 4.12598 -117.274 -4.12598 4.12598 0.67 0.000607521 0.0005661 0.0394949 0.0367593 26 1686 20 6.64007e+06 200928 477104. 1650.88 1.98 0.187954 0.162731 21682 110474 -1 1476 18 837 1320 110296 24299 2.92297 2.92297 -108.566 -2.92297 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0221312 0.019297 92 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.72 vpr 62.30 MiB -1 -1 0.12 18160 1 0.03 -1 -1 30016 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.7 MiB 0.12 882 10687 2740 7287 660 62.3 MiB 0.10 0.00 3.50309 -113.66 -3.50309 3.50309 0.74 0.000626338 0.000582469 0.0381159 0.0354805 32 1995 21 6.64007e+06 263718 554710. 1919.41 0.86 0.111585 0.0983398 22834 132086 -1 1900 18 1046 1918 134410 29742 2.72357 2.72357 -108.004 -2.72357 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0224918 0.0196183 115 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.68 vpr 62.04 MiB -1 -1 0.21 17948 1 0.03 -1 -1 30236 -1 -1 27 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.3 MiB 0.10 444 9966 3251 4492 2223 62.0 MiB 0.07 0.00 3.40927 -77.6354 -3.40927 3.40927 0.67 0.000473319 0.000440218 0.0274649 0.0255065 28 1484 27 6.64007e+06 339066 500653. 1732.36 0.99 0.0892455 0.0779208 21970 115934 -1 1248 20 772 1308 108617 28461 2.96837 2.96837 -79.7493 -2.96837 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0190011 0.0165108 89 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.05 vpr 62.70 MiB -1 -1 0.26 18344 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 23.7 MiB 0.23 946 11431 2748 6950 1733 62.7 MiB 0.12 0.00 4.37233 -131.494 -4.37233 4.37233 0.76 0.000727426 0.000675383 0.0470142 0.04353 32 2550 23 6.64007e+06 263718 554710. 1919.41 0.88 0.136082 0.119991 22834 132086 -1 2069 20 1308 2361 139562 33439 3.60963 3.60963 -126.176 -3.60963 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0287671 0.0251131 136 72 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.64 vpr 63.02 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30200 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 24.2 MiB 0.21 961 9998 2423 6940 635 63.0 MiB 0.13 0.00 4.49598 -142.588 -4.49598 4.49598 0.67 0.000916733 0.0008464 0.0415397 0.0383976 32 2313 19 6.64007e+06 439530 554710. 1919.41 2.57 0.214352 0.185494 22834 132086 -1 1958 17 1274 1962 116698 27985 3.33083 3.33083 -125.991 -3.33083 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0266459 0.0233349 143 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.21 vpr 62.95 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30268 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 24.0 MiB 0.41 1143 17347 5477 9563 2307 62.9 MiB 0.16 0.00 5.20258 -155.488 -5.20258 5.20258 0.69 0.000580252 0.000532451 0.059722 0.0554328 28 2696 21 6.65987e+06 380340 500653. 1732.36 0.93 0.143234 0.127046 21970 115934 -1 2338 20 1526 2351 162828 36705 4.16677 4.16677 -147.593 -4.16677 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0285189 0.0249567 152 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.67 vpr 62.71 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30476 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 23.9 MiB 0.29 826 5567 1093 3716 758 62.7 MiB 0.06 0.00 4.85795 -137.996 -4.85795 4.85795 0.66 0.000697421 0.000644938 0.0230496 0.0214275 32 2525 24 6.65987e+06 304272 554710. 1919.41 2.58 0.197374 0.169566 22834 132086 -1 2014 20 1764 2669 182543 47594 4.14603 4.14603 -135.897 -4.14603 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0285777 0.0249937 140 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.94 vpr 62.35 MiB -1 -1 0.22 18176 1 0.03 -1 -1 30232 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.5 MiB 0.25 1079 15639 5051 8379 2209 62.4 MiB 0.14 0.00 4.11181 -120.963 -4.11181 4.11181 0.66 0.000630131 0.000585644 0.0537387 0.0499798 32 2479 22 6.65987e+06 291594 554710. 1919.41 0.85 0.135757 0.120535 22834 132086 -1 2143 21 1316 1863 128998 30148 3.48731 3.48731 -116.645 -3.48731 0 0 701300. 2426.64 0.22 0.07 0.14 -1 -1 0.22 0.0261975 0.0228692 126 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.93 vpr 62.51 MiB -1 -1 0.25 17956 1 0.03 -1 -1 30388 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.5 MiB 0.16 937 15298 4951 7764 2583 62.5 MiB 0.13 0.00 4.29337 -115.569 -4.29337 4.29337 0.65 0.000633977 0.000588928 0.0519066 0.0482503 32 2306 30 6.65987e+06 342306 554710. 1919.41 0.90 0.135198 0.119336 22834 132086 -1 1985 25 1504 2799 219919 50220 3.42411 3.42411 -111.097 -3.42411 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0302588 0.0262504 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.20 vpr 62.54 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1058 13911 3755 8078 2078 62.5 MiB 0.14 0.00 4.32255 -126.417 -4.32255 4.32255 0.66 0.000675165 0.000626782 0.0515498 0.0478843 32 2541 47 6.65987e+06 291594 554710. 1919.41 1.14 0.158779 0.13959 22834 132086 -1 2322 23 1597 3125 272365 58938 3.64831 3.64831 -124.147 -3.64831 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0301736 0.0262658 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.72 vpr 62.91 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 24.0 MiB 0.26 858 7201 1481 5496 224 62.9 MiB 0.08 0.00 3.30984 -111.675 -3.30984 3.30984 0.65 0.000721391 0.000671053 0.0257237 0.0238998 28 2339 24 6.65987e+06 418374 500653. 1732.36 2.76 0.228072 0.196098 21970 115934 -1 2009 20 1311 2041 126370 33362 3.01731 3.01731 -111.009 -3.01731 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0286904 0.0250997 141 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.88 vpr 62.00 MiB -1 -1 0.23 17836 1 0.03 -1 -1 30680 -1 -1 18 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 23.5 MiB 0.13 601 11976 3191 7496 1289 62.0 MiB 0.10 0.00 3.61795 -96.0414 -3.61795 3.61795 0.64 0.000475185 0.000437187 0.0418722 0.0389108 28 1542 20 6.65987e+06 228204 500653. 1732.36 1.97 0.187847 0.162615 21970 115934 -1 1408 20 793 1327 101908 22870 2.80071 2.80071 -94.1372 -2.80071 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0220276 0.0192048 94 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 6.00 vpr 62.28 MiB -1 -1 0.20 17756 1 0.03 -1 -1 30120 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.5 MiB 0.15 811 9892 2186 7284 422 62.3 MiB 0.09 0.00 3.36433 -96.8901 -3.36433 3.36433 0.66 0.000598757 0.000555484 0.0298757 0.0277704 28 2347 24 6.65987e+06 393018 500653. 1732.36 3.17 0.190268 0.164053 21970 115934 -1 1905 19 1011 1801 131698 30370 2.71485 2.71485 -95.6397 -2.71485 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0231024 0.020174 115 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.77 vpr 62.48 MiB -1 -1 0.21 18332 1 0.03 -1 -1 30196 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 31 32 317 271 1 169 82 17 17 289 -1 unnamed_device 23.5 MiB 0.24 927 8804 2219 5962 623 62.5 MiB 0.09 0.00 3.4209 -115.766 -3.4209 3.4209 0.66 0.000641118 0.000595527 0.0335851 0.0312321 30 1946 21 6.65987e+06 240882 526063. 1820.29 1.82 0.188217 0.162784 22546 126617 -1 1679 22 876 1290 75993 17565 2.91031 2.91031 -109.66 -2.91031 0 0 666494. 2306.21 0.19 0.06 0.12 -1 -1 0.19 0.027157 0.0236313 112 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.81 vpr 62.22 MiB -1 -1 0.21 17924 1 0.03 -1 -1 30124 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.5 MiB 0.25 719 10056 2390 7132 534 62.2 MiB 0.10 0.00 3.74029 -120.95 -3.74029 3.74029 0.66 0.000623824 0.000580161 0.0380352 0.0353931 28 2074 23 6.65987e+06 215526 500653. 1732.36 0.88 0.114167 0.100494 21970 115934 -1 1782 18 1142 1764 119209 29314 2.82871 2.82871 -113.841 -2.82871 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0230886 0.0201862 113 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.86 vpr 62.36 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30408 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.5 MiB 0.25 575 5994 1238 4012 744 62.4 MiB 0.06 0.00 4.00989 -106.137 -4.00989 4.00989 0.66 0.000618119 0.000569544 0.02387 0.0222237 32 1593 22 6.65987e+06 215526 554710. 1919.41 0.80 0.097779 0.0852991 22834 132086 -1 1313 15 696 1067 62289 16243 2.70271 2.70271 -97.1718 -2.70271 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0198645 0.0174243 98 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 6.86 vpr 62.07 MiB -1 -1 0.19 17944 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63560 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 23.4 MiB 0.28 795 6381 1346 4871 164 62.1 MiB 0.07 0.00 3.75729 -117.97 -3.75729 3.75729 0.71 0.000591167 0.00055044 0.0236305 0.0220085 28 2308 31 6.65987e+06 215526 500653. 1732.36 3.90 0.174161 0.150224 21970 115934 -1 1893 16 1083 1444 121416 28692 2.92331 2.92331 -107.84 -2.92331 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0202939 0.0177696 106 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.94 vpr 62.81 MiB -1 -1 0.19 18208 1 0.03 -1 -1 30336 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 23.9 MiB 0.34 1032 9253 2342 6405 506 62.8 MiB 0.10 0.00 4.35378 -139.852 -4.35378 4.35378 0.66 0.000700368 0.000651009 0.03556 0.0330503 32 2591 17 6.65987e+06 304272 554710. 1919.41 0.85 0.113438 0.0998848 22834 132086 -1 2306 24 1781 2644 208357 48038 3.49111 3.49111 -130.916 -3.49111 0 0 701300. 2426.64 0.19 0.06 0.08 -1 -1 0.19 0.0244401 0.0214036 139 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.94 vpr 62.83 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30288 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 23.8 MiB 0.22 904 11170 2626 8078 466 62.8 MiB 0.11 0.00 4.4708 -131.273 -4.4708 4.4708 0.71 0.000711577 0.000660818 0.0401298 0.0372661 28 2436 21 6.65987e+06 380340 500653. 1732.36 2.92 0.230077 0.198787 21970 115934 -1 2247 23 1751 2879 209966 48329 3.76071 3.76071 -132.119 -3.76071 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0173877 0.0154107 133 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.67 vpr 61.78 MiB -1 -1 0.21 18084 1 0.03 -1 -1 30556 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.3 MiB 0.22 775 11118 2644 7385 1089 61.8 MiB 0.09 0.00 3.16393 -91.7211 -3.16393 3.16393 0.67 0.000540416 0.00050301 0.035595 0.0331547 26 1874 19 6.65987e+06 266238 477104. 1650.88 0.80 0.0991823 0.087356 21682 110474 -1 1569 19 924 1516 104371 25434 2.84691 2.84691 -93.5767 -2.84691 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.020985 0.01828 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.12 vpr 63.03 MiB -1 -1 0.23 18208 1 0.05 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1049 12733 3859 6982 1892 63.0 MiB 0.13 0.00 4.04739 -126.772 -4.04739 4.04739 0.66 0.000717948 0.000666948 0.0522495 0.0485925 32 2511 22 6.65987e+06 266238 554710. 1919.41 0.87 0.137529 0.121695 22834 132086 -1 2238 23 1445 2718 191051 43605 3.35377 3.35377 -121.168 -3.35377 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0323397 0.0281579 132 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.16 vpr 62.79 MiB -1 -1 0.22 18164 1 0.03 -1 -1 30080 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1072 15523 5016 8339 2168 62.8 MiB 0.14 0.00 4.31458 -139.763 -4.31458 4.31458 0.66 0.000533528 0.000490056 0.0537202 0.0496218 28 2915 21 6.65987e+06 266238 500653. 1732.36 1.07 0.134997 0.119231 21970 115934 -1 2316 19 1401 1989 160493 35788 3.26677 3.26677 -127.853 -3.26677 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0273035 0.0240214 137 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.07 vpr 62.49 MiB -1 -1 0.18 18384 1 0.03 -1 -1 30352 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.5 MiB 0.22 861 11433 2956 7633 844 62.5 MiB 0.10 0.00 2.85064 -102.994 -2.85064 2.85064 0.71 0.000654015 0.000608086 0.0373514 0.0346593 26 2153 22 6.65987e+06 367662 477104. 1650.88 0.98 0.116875 0.10289 21682 110474 -1 1816 19 977 1497 110865 25449 2.14751 2.14751 -97.7734 -2.14751 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0247404 0.0215273 110 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.57 vpr 61.78 MiB -1 -1 0.22 17984 1 0.03 -1 -1 30280 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.2 MiB 0.09 640 7086 1644 4840 602 61.8 MiB 0.06 0.00 2.24807 -77.7472 -2.24807 2.24807 0.67 0.000372225 0.000341719 0.0241246 0.0223367 32 1491 20 6.65987e+06 190170 554710. 1919.41 0.82 0.0821052 0.0717064 22834 132086 -1 1296 14 579 811 59607 14185 1.89185 1.89185 -79.7993 -1.89185 0 0 701300. 2426.64 0.20 0.04 0.12 -1 -1 0.20 0.0153274 0.0133953 81 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.15 vpr 62.21 MiB -1 -1 0.15 18244 1 0.03 -1 -1 30548 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 23.5 MiB 0.46 819 13254 3680 8313 1261 62.2 MiB 0.13 0.00 4.81074 -140.485 -4.81074 4.81074 0.70 0.000610703 0.000567783 0.049892 0.0463618 28 2127 22 6.65987e+06 240882 500653. 1732.36 0.82 0.123219 0.108961 21970 115934 -1 1797 18 1099 1584 108008 26189 3.47917 3.47917 -126.534 -3.47917 0 0 612192. 2118.31 0.18 0.06 0.12 -1 -1 0.18 0.0228405 0.0199712 127 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.77 vpr 62.73 MiB -1 -1 0.25 18180 1 0.03 -1 -1 30552 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.17 945 6791 1317 5158 316 62.7 MiB 0.08 0.00 4.14893 -130.493 -4.14893 4.14893 0.70 0.000523674 0.000481073 0.0204189 0.0187587 30 2169 21 6.65987e+06 393018 526063. 1820.29 0.84 0.101919 0.0886746 22546 126617 -1 1899 17 974 1626 91978 21788 3.32623 3.32623 -121.056 -3.32623 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0250321 0.0219304 135 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 8.05 vpr 62.92 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30368 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1176 13911 3816 8065 2030 62.9 MiB 0.17 0.00 4.32644 -135.935 -4.32644 4.32644 0.67 0.000840037 0.00077805 0.059468 0.0550684 28 3219 21 6.65987e+06 291594 500653. 1732.36 4.70 0.234056 0.203886 21970 115934 -1 2732 29 1773 2745 359148 134849 3.93331 3.93331 -139.547 -3.93331 0 0 612192. 2118.31 0.18 0.14 0.11 -1 -1 0.18 0.0384567 0.0333359 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.84 vpr 61.75 MiB -1 -1 0.18 17964 1 0.02 -1 -1 30572 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63232 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.2 MiB 0.21 372 9836 3070 4693 2073 61.8 MiB 0.06 0.00 2.3895 -62.8108 -2.3895 2.3895 0.68 0.000427958 0.000398083 0.0277289 0.0257683 32 1048 32 6.65987e+06 228204 554710. 1919.41 1.02 0.0892202 0.0780995 22834 132086 -1 748 15 526 715 37159 11103 1.85405 1.85405 -60.2178 -1.85405 0 0 701300. 2426.64 0.20 0.03 0.10 -1 -1 0.20 0.0141123 0.0124112 77 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.90 vpr 62.31 MiB -1 -1 0.22 17632 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 1008 10873 2978 7123 772 62.3 MiB 0.10 0.00 4.661 -123.259 -4.661 4.661 0.66 0.00061645 0.000573757 0.0383728 0.0357514 28 2311 31 6.65987e+06 266238 500653. 1732.36 0.97 0.121793 0.106547 21970 115934 -1 2059 21 1264 2355 164435 38396 3.79397 3.79397 -121.606 -3.79397 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0260079 0.0226915 118 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.47 vpr 61.68 MiB -1 -1 0.20 17528 1 0.02 -1 -1 30004 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63156 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.2 MiB 0.09 415 10370 2863 4808 2699 61.7 MiB 0.06 0.00 2.54569 -72.1104 -2.54569 2.54569 0.65 0.000420762 0.00039026 0.0277356 0.0257335 30 1192 29 6.65987e+06 177492 526063. 1820.29 0.78 0.0834509 0.07298 22546 126617 -1 819 15 404 445 27960 7884 1.81985 1.81985 -66.7912 -1.81985 0 0 666494. 2306.21 0.19 0.03 0.12 -1 -1 0.19 0.0137758 0.0120462 79 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.87 vpr 62.34 MiB -1 -1 0.22 17956 1 0.03 -1 -1 29988 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.6 MiB 0.16 867 9679 2178 7022 479 62.3 MiB 0.09 0.00 4.41865 -121.229 -4.41865 4.41865 0.66 0.000636145 0.000591964 0.0313997 0.0292109 28 2090 22 6.65987e+06 380340 500653. 1732.36 0.94 0.107669 0.0945307 21970 115934 -1 1804 18 1065 1787 114117 27349 3.19965 3.19965 -107.663 -3.19965 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0237139 0.0207535 123 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.72 vpr 62.28 MiB -1 -1 0.23 17712 1 0.03 -1 -1 30372 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.5 MiB 0.16 1032 8303 1834 5800 669 62.3 MiB 0.08 0.00 3.62555 -107.534 -3.62555 3.62555 0.66 0.000635132 0.000590291 0.0265923 0.0247285 30 2260 22 6.65987e+06 393018 526063. 1820.29 1.80 0.175166 0.151149 22546 126617 -1 1950 19 961 1748 104695 23724 2.60951 2.60951 -101.656 -2.60951 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.024746 0.0216667 128 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.12 vpr 62.62 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30048 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 23.8 MiB 0.19 1026 15366 4954 8031 2381 62.6 MiB 0.15 0.00 4.40163 -128.768 -4.40163 4.40163 0.73 0.000674239 0.000624447 0.0541992 0.0502813 28 2536 22 6.65987e+06 329628 500653. 1732.36 1.00 0.135972 0.120361 21970 115934 -1 2239 29 1748 3059 300303 101990 3.99999 3.99999 -130.531 -3.99999 0 0 612192. 2118.31 0.18 0.12 0.11 -1 -1 0.18 0.0359896 0.0311848 125 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.80 vpr 62.11 MiB -1 -1 0.22 17856 1 0.03 -1 -1 30080 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.13 743 11260 3712 5303 2245 62.1 MiB 0.10 0.00 2.93487 -98.1536 -2.93487 2.93487 0.70 0.000600307 0.000558451 0.0411593 0.0382705 32 1913 21 6.65987e+06 202848 554710. 1919.41 0.82 0.111945 0.0987402 22834 132086 -1 1645 17 907 1417 116532 28198 2.87311 2.87311 -105.642 -2.87311 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0214194 0.0187523 101 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 5.22 vpr 62.00 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30144 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.5 MiB 0.14 765 12733 3276 8152 1305 62.0 MiB 0.10 0.00 2.99867 -95.3722 -2.99867 2.99867 0.66 0.000565307 0.000526212 0.041485 0.0386238 32 1733 17 6.65987e+06 291594 554710. 1919.41 2.37 0.201909 0.174689 22834 132086 -1 1567 19 957 1467 111882 25763 2.66145 2.66145 -94.3977 -2.66145 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0188511 0.0165312 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.72 vpr 62.08 MiB -1 -1 0.22 17880 1 0.03 -1 -1 30120 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.15 635 14123 3811 8579 1733 62.1 MiB 0.12 0.00 3.31478 -92.4847 -3.31478 3.31478 0.70 0.000553831 0.000515154 0.0414422 0.03822 28 1810 27 6.65987e+06 291594 500653. 1732.36 0.82 0.113634 0.099748 21970 115934 -1 1551 19 950 1652 120534 27810 2.73271 2.73271 -92.4594 -2.73271 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0215918 0.0188074 98 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.30 vpr 62.00 MiB -1 -1 0.22 17676 1 0.03 -1 -1 30300 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.4 MiB 0.14 727 6383 1361 4583 439 62.0 MiB 0.06 0.00 3.74563 -110.014 -3.74563 3.74563 0.68 0.000573058 0.000534192 0.0224543 0.0209505 32 1960 23 6.65987e+06 240882 554710. 1919.41 2.45 0.170092 0.146517 22834 132086 -1 1796 20 1192 1921 150188 35568 2.96611 2.96611 -110.14 -2.96611 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0230856 0.0201369 110 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.80 vpr 62.08 MiB -1 -1 0.22 17968 1 0.03 -1 -1 30428 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.5 MiB 0.11 616 5517 989 3982 546 62.1 MiB 0.05 0.00 3.36515 -97.3921 -3.36515 3.36515 0.72 0.00058567 0.000544937 0.0182446 0.0169857 28 1967 34 6.65987e+06 342306 500653. 1732.36 1.01 0.099651 0.0863182 21970 115934 -1 1505 20 992 1649 104792 27138 2.58045 2.58045 -96.2333 -2.58045 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0231748 0.020168 103 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.09 vpr 62.04 MiB -1 -1 0.18 18016 1 0.03 -1 -1 30360 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 23.4 MiB 0.24 865 14450 4409 7950 2091 62.0 MiB 0.12 0.00 3.27578 -105.17 -3.27578 3.27578 0.70 0.000593717 0.000551718 0.0482444 0.0448486 28 1896 21 6.65987e+06 316950 500653. 1732.36 0.90 0.119184 0.105354 21970 115934 -1 1678 20 1051 1598 111541 25786 2.24065 2.24065 -91.6407 -2.24065 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0243728 0.0212324 105 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.15 vpr 62.89 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30512 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1216 16551 4115 10400 2036 62.9 MiB 0.15 0.00 3.87192 -114.947 -3.87192 3.87192 0.67 0.000733864 0.000681268 0.054657 0.0507764 32 2878 21 6.65987e+06 469086 554710. 1919.41 0.86 0.14157 0.12529 22834 132086 -1 2430 20 1422 2539 179933 40402 3.68939 3.68939 -116.203 -3.68939 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0313807 0.0276478 150 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.48 vpr 62.82 MiB -1 -1 0.26 18188 1 0.03 -1 -1 30280 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 23.9 MiB 0.27 918 16804 4626 9521 2657 62.8 MiB 0.15 0.00 3.76954 -123.355 -3.76954 3.76954 0.67 0.000756966 0.000702528 0.0577883 0.0534103 26 2803 43 6.65987e+06 456408 477104. 1650.88 1.35 0.176517 0.15524 21682 110474 -1 2202 22 1787 2772 200753 48070 3.09111 3.09111 -121.86 -3.09111 0 0 585099. 2024.56 0.17 0.09 0.08 -1 -1 0.17 0.0325186 0.0283527 146 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.34 vpr 62.30 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30116 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 23.6 MiB 0.47 795 7304 1575 5379 350 62.3 MiB 0.08 0.00 4.09732 -119.878 -4.09732 4.09732 0.66 0.000591925 0.000551337 0.0291753 0.0272926 28 2295 28 6.65987e+06 215526 500653. 1732.36 1.11 0.10999 0.0961369 21970 115934 -1 1888 21 1171 1638 142248 31897 2.88337 2.88337 -109.949 -2.88337 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.024575 0.0214026 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.11 vpr 62.78 MiB -1 -1 0.25 18264 1 0.04 -1 -1 30368 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 23.9 MiB 0.32 944 8727 2152 5844 731 62.8 MiB 0.09 0.00 3.92632 -125.266 -3.92632 3.92632 0.72 0.000715227 0.000664785 0.0351438 0.0326476 32 2324 22 6.65987e+06 304272 554710. 1919.41 0.90 0.127977 0.112152 22834 132086 -1 2075 19 1422 2441 175051 40721 2.95717 2.95717 -112.585 -2.95717 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0277486 0.0242877 137 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.26 vpr 62.65 MiB -1 -1 0.17 18256 1 0.03 -1 -1 30364 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 24.3 MiB 0.44 1273 15165 4552 8275 2338 62.6 MiB 0.16 0.00 5.69001 -171.445 -5.69001 5.69001 0.66 0.000729732 0.00067782 0.0579105 0.0538032 32 3146 25 6.65987e+06 342306 554710. 1919.41 0.93 0.148696 0.131687 22834 132086 -1 2682 25 2424 3699 270469 60854 4.91423 4.91423 -167.458 -4.91423 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0346257 0.0301263 170 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.52 vpr 62.98 MiB -1 -1 0.21 18320 1 0.03 -1 -1 30460 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 383 305 1 209 88 17 17 289 -1 unnamed_device 24.0 MiB 0.98 1100 16468 4969 9311 2188 63.0 MiB 0.16 0.00 4.92247 -149.927 -4.92247 4.92247 0.66 0.000681878 0.00062852 0.064638 0.0599997 28 2844 20 6.65987e+06 316950 500653. 1732.36 2.67 0.253518 0.220821 21970 115934 -1 2478 19 1689 2547 182737 41274 4.31102 4.31102 -150.151 -4.31102 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0289824 0.0254081 162 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.32 vpr 62.66 MiB -1 -1 0.21 18240 1 0.03 -1 -1 30568 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 23.8 MiB 0.27 1122 13754 3789 8484 1481 62.7 MiB 0.13 0.00 4.34966 -130.317 -4.34966 4.34966 0.66 0.000693669 0.00064431 0.0483843 0.0449475 28 2691 26 6.65987e+06 367662 500653. 1732.36 1.24 0.138489 0.12238 21970 115934 -1 2330 25 1556 2709 313045 123001 3.08231 3.08231 -118.242 -3.08231 0 0 612192. 2118.31 0.18 0.13 0.11 -1 -1 0.18 0.0334755 0.0291298 133 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 6.45 vpr 62.30 MiB -1 -1 0.16 18048 1 0.03 -1 -1 30436 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.23 922 8780 2172 6205 403 62.3 MiB 0.09 0.00 4.1266 -111.615 -4.1266 4.1266 0.66 0.000615512 0.000572023 0.0307531 0.0286301 26 2735 26 6.65987e+06 278916 477104. 1650.88 3.54 0.186787 0.161167 21682 110474 -1 2172 23 1525 2279 180283 42061 3.61865 3.61865 -116.354 -3.61865 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0276252 0.0240354 118 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.35 vpr 62.84 MiB -1 -1 0.26 18496 1 0.03 -1 -1 30568 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1225 11764 2792 7889 1083 62.8 MiB 0.13 0.00 4.86514 -158.575 -4.86514 4.86514 0.67 0.000862791 0.000801294 0.0456373 0.0424118 28 3027 30 6.65987e+06 481764 500653. 1732.36 1.18 0.159286 0.139543 21970 115934 -1 2643 23 1724 2712 187683 42451 3.79291 3.79291 -146.352 -3.79291 0 0 612192. 2118.31 0.18 0.10 0.12 -1 -1 0.18 0.0383603 0.0334527 172 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.69 vpr 62.09 MiB -1 -1 0.21 17972 1 0.03 -1 -1 30152 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.2 MiB 0.19 792 5391 1113 3866 412 62.1 MiB 0.06 0.00 3.45892 -98.948 -3.45892 3.45892 0.66 0.000565329 0.000525832 0.0188943 0.0175703 30 1740 20 6.65987e+06 266238 526063. 1820.29 0.78 0.08515 0.0741422 22546 126617 -1 1534 20 903 1518 93928 21198 2.63765 2.63765 -97.0397 -2.63765 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0225828 0.0197058 101 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 7.86 vpr 62.88 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30156 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 23.9 MiB 0.34 1177 11804 3160 7260 1384 62.9 MiB 0.12 0.00 4.89669 -145.469 -4.89669 4.89669 0.70 0.000690073 0.000641559 0.0449344 0.0417855 28 3159 30 6.65987e+06 291594 500653. 1732.36 4.43 0.230072 0.199739 21970 115934 -1 2513 22 1308 1851 143445 31289 4.01251 4.01251 -136.733 -4.01251 0 0 612192. 2118.31 0.23 0.08 0.11 -1 -1 0.23 0.0299408 0.0261855 142 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.99 vpr 62.96 MiB -1 -1 0.25 18240 1 0.02 -1 -1 30296 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.1 MiB 0.26 868 8311 1653 6113 545 63.0 MiB 0.08 0.00 3.91407 -115.086 -3.91407 3.91407 0.66 0.000689594 0.000640732 0.0283091 0.0263151 30 2509 26 6.65987e+06 418374 526063. 1820.29 2.93 0.217913 0.187672 22546 126617 -1 1679 16 859 1555 81649 20422 2.90591 2.90591 -105.542 -2.90591 0 0 666494. 2306.21 0.24 0.05 0.11 -1 -1 0.24 0.0238138 0.0209861 131 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.87 vpr 62.32 MiB -1 -1 0.23 17844 1 0.03 -1 -1 30268 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.6 MiB 0.16 846 6328 1287 4843 198 62.3 MiB 0.07 0.00 3.96153 -117.52 -3.96153 3.96153 0.68 0.000626983 0.000583122 0.0226954 0.0211289 28 2304 21 6.65987e+06 304272 500653. 1732.36 0.92 0.0983394 0.0860529 21970 115934 -1 1981 23 1418 2697 199285 46458 3.71659 3.71659 -122.806 -3.71659 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0279045 0.0242995 123 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.58 vpr 62.69 MiB -1 -1 0.20 18140 1 0.03 -1 -1 30308 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1090 7835 1660 5643 532 62.7 MiB 0.09 0.00 4.46734 -132.214 -4.46734 4.46734 0.68 0.000699058 0.000648949 0.0313949 0.0291361 32 2503 28 6.65987e+06 278916 554710. 1919.41 2.47 0.202781 0.174826 22834 132086 -1 2254 16 1127 1532 112414 26836 3.20591 3.20591 -119.029 -3.20591 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0239503 0.0210717 136 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.55 vpr 62.81 MiB -1 -1 0.16 18228 1 0.04 -1 -1 30312 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 23.7 MiB 0.46 1025 8951 2023 6429 499 62.8 MiB 0.10 0.00 3.78594 -122.94 -3.78594 3.78594 0.68 0.000718827 0.000667939 0.0325473 0.0303024 26 2851 30 6.65987e+06 393018 477104. 1650.88 1.31 0.12713 0.111263 21682 110474 -1 2246 22 1338 2263 183303 40174 3.11131 3.11131 -122.127 -3.11131 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0305414 0.0266092 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.17 vpr 62.95 MiB -1 -1 0.24 18364 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1095 17268 5091 9567 2610 62.9 MiB 0.16 0.00 4.49052 -137.752 -4.49052 4.49052 0.73 0.000748254 0.000694045 0.0573134 0.0531371 32 2596 25 6.65987e+06 456408 554710. 1919.41 0.89 0.14838 0.13115 22834 132086 -1 2232 21 1219 1845 147581 32927 3.21151 3.21151 -122.058 -3.21151 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0307428 0.0268667 144 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.73 vpr 62.81 MiB -1 -1 0.22 18412 1 0.03 -1 -1 30448 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.18 881 8493 1904 6212 377 62.8 MiB 0.09 0.00 3.98836 -116.947 -3.98836 3.98836 0.68 0.000522428 0.000480673 0.0247258 0.0227498 32 2229 29 6.65987e+06 367662 554710. 1919.41 2.79 0.215798 0.185291 22834 132086 -1 1823 23 1298 2235 165203 37734 3.31585 3.31585 -112.024 -3.31585 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0286858 0.0249584 122 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.03 vpr 62.53 MiB -1 -1 0.23 18168 1 0.03 -1 -1 30108 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 23.7 MiB 0.26 1058 6423 1250 4686 487 62.5 MiB 0.07 0.00 4.75229 -137.839 -4.75229 4.75229 0.69 0.000656818 0.000610756 0.0243928 0.0227171 32 2530 23 6.65987e+06 291594 554710. 1919.41 0.95 0.0929185 0.0819175 22834 132086 -1 2237 21 1668 2440 175489 41742 3.71071 3.71071 -129.186 -3.71071 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282763 0.0248034 133 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.20 vpr 62.79 MiB -1 -1 0.25 18160 1 0.03 -1 -1 30356 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 23.8 MiB 0.54 1053 14450 4497 7379 2574 62.8 MiB 0.15 0.00 4.75055 -138.917 -4.75055 4.75055 0.68 0.000724219 0.000671884 0.058629 0.0544183 34 2568 25 6.65987e+06 291594 585099. 2024.56 2.76 0.245776 0.213729 23122 138558 -1 2239 20 1331 2062 163732 34849 3.99831 3.99831 -126.897 -3.99831 0 0 742403. 2568.87 0.21 0.08 0.13 -1 -1 0.21 0.0290012 0.0253507 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.14 vpr 62.79 MiB -1 -1 0.24 18120 1 0.03 -1 -1 30272 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 23.9 MiB 0.26 901 8269 1876 5929 464 62.8 MiB 0.09 0.00 3.98149 -123.442 -3.98149 3.98149 0.69 0.000737867 0.000684626 0.0352268 0.0327283 32 2648 25 6.65987e+06 266238 554710. 1919.41 0.95 0.127234 0.111521 22834 132086 -1 2151 21 1523 2669 176931 42791 3.46425 3.46425 -121.172 -3.46425 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0270488 0.0239658 135 77 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.61 vpr 61.97 MiB -1 -1 0.21 17996 1 0.03 -1 -1 30532 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.3 MiB 0.09 757 15103 5160 7628 2315 62.0 MiB 0.11 0.00 3.22598 -97.9932 -3.22598 3.22598 0.67 0.000558007 0.000518758 0.0452597 0.0420692 30 1807 20 6.65987e+06 304272 526063. 1820.29 0.78 0.110091 0.0974139 22546 126617 -1 1524 20 745 1219 73327 17031 2.44445 2.44445 -89.72 -2.44445 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0222412 0.019337 97 23 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.95 vpr 62.66 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30144 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 23.8 MiB 0.20 854 11979 3325 7498 1156 62.7 MiB 0.12 0.00 4.00764 -134.08 -4.00764 4.00764 0.69 0.000670779 0.000623283 0.0463383 0.0430526 30 2108 23 6.65987e+06 253560 526063. 1820.29 0.85 0.128691 0.11355 22546 126617 -1 1862 17 1081 1505 80425 19493 3.45017 3.45017 -131.307 -3.45017 0 0 666494. 2306.21 0.26 0.06 0.12 -1 -1 0.26 0.0238494 0.0209315 125 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.35 vpr 62.80 MiB -1 -1 0.20 18192 1 0.03 -1 -1 30340 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1274 10235 2657 6661 917 62.8 MiB 0.12 0.00 5.13258 -155.405 -5.13258 5.13258 0.70 0.000776146 0.000721625 0.0414571 0.0384716 32 3405 33 6.65987e+06 354984 554710. 1919.41 1.04 0.146256 0.128547 22834 132086 -1 2767 22 2176 3438 289117 62894 4.34411 4.34411 -147.372 -4.34411 0 0 701300. 2426.64 0.30 0.11 0.13 -1 -1 0.30 0.0325149 0.0290412 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.96 vpr 62.73 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30404 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.27 873 6359 1089 5003 267 62.7 MiB 0.07 0.00 4.1576 -127.981 -4.1576 4.1576 0.66 0.000701783 0.000644771 0.0225039 0.0209103 26 2804 32 6.65987e+06 393018 477104. 1650.88 2.85 0.197953 0.170586 21682 110474 -1 2011 20 1285 2168 156274 38621 3.16251 3.16251 -116.567 -3.16251 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0275476 0.0240982 133 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.46 vpr 62.14 MiB -1 -1 0.16 18080 1 0.03 -1 -1 30332 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.5 MiB 0.15 662 8278 1864 5308 1106 62.1 MiB 0.08 0.00 3.33678 -99.7803 -3.33678 3.33678 0.66 0.000595215 0.000554432 0.0270729 0.0252138 26 2015 33 6.65987e+06 329628 477104. 1650.88 2.59 0.182899 0.15749 21682 110474 -1 1722 23 1271 2045 155617 37080 2.92991 2.92991 -104.001 -2.92991 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0260743 0.0226209 104 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.67 vpr 62.80 MiB -1 -1 0.17 18516 1 0.03 -1 -1 30372 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 24.2 MiB 0.75 1210 14939 4355 8110 2474 62.8 MiB 0.17 0.00 6.10992 -175.031 -6.10992 6.10992 0.66 0.000794954 0.000736142 0.0655486 0.0609178 32 3372 31 6.65987e+06 316950 554710. 1919.41 1.03 0.175844 0.155382 22834 132086 -1 2596 21 1928 2778 201964 46743 4.86497 4.86497 -160.032 -4.86497 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0350453 0.0306729 168 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.11 vpr 62.60 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30408 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 23.8 MiB 0.27 931 10389 2832 6808 749 62.6 MiB 0.10 0.00 4.39794 -132.47 -4.39794 4.39794 0.66 0.000685033 0.000636289 0.0348545 0.0323946 32 2200 23 6.65987e+06 405696 554710. 1919.41 0.86 0.119094 0.104644 22834 132086 -1 1960 20 1371 2131 135826 33635 3.60951 3.60951 -126.111 -3.60951 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0272217 0.0237813 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.66 vpr 61.91 MiB -1 -1 0.20 17848 1 0.03 -1 -1 30392 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.2 MiB 0.12 660 6999 1482 4945 572 61.9 MiB 0.06 0.00 3.21869 -92.7316 -3.21869 3.21869 0.66 0.000534983 0.000497437 0.0213671 0.0198852 30 1799 25 6.65987e+06 291594 526063. 1820.29 0.85 0.0879458 0.0766453 22546 126617 -1 1447 15 697 1154 70483 17453 2.53419 2.53419 -89.4513 -2.53419 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0173212 0.0151969 100 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.51 vpr 62.75 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30140 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1092 11573 2759 8065 749 62.7 MiB 0.12 0.00 5.1174 -127.812 -5.1174 5.1174 0.66 0.000706587 0.000656067 0.0389872 0.0362449 34 2426 23 6.65987e+06 431052 585099. 2024.56 1.43 0.151023 0.132154 23122 138558 -1 2153 21 1261 2421 152973 34826 4.15079 4.15079 -123.447 -4.15079 0 0 742403. 2568.87 0.21 0.08 0.12 -1 -1 0.21 0.0293205 0.0256207 139 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.01 vpr 62.06 MiB -1 -1 0.22 17792 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.5 MiB 0.11 658 7038 1455 4830 753 62.1 MiB 0.06 0.00 3.29684 -98.8102 -3.29684 3.29684 0.87 0.000409907 0.000376428 0.0177496 0.0162941 28 2106 37 6.65987e+06 253560 500653. 1732.36 1.06 0.0911549 0.0789162 21970 115934 -1 1711 17 1024 1691 111688 29187 2.78065 2.78065 -105.082 -2.78065 0 0 612192. 2118.31 0.20 0.06 0.11 -1 -1 0.20 0.0199101 0.0174155 104 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.07 vpr 62.13 MiB -1 -1 0.23 18056 1 0.03 -1 -1 30056 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.5 MiB 0.17 665 12623 3525 7434 1664 62.1 MiB 0.11 0.00 3.96152 -101.883 -3.96152 3.96152 0.66 0.000584146 0.00054238 0.0373317 0.0346729 28 1809 20 6.65987e+06 418374 500653. 1732.36 2.22 0.170982 0.147922 21970 115934 -1 1537 18 926 1622 96600 24110 2.72171 2.72171 -94.4656 -2.72171 0 0 612192. 2118.31 0.18 0.06 0.08 -1 -1 0.18 0.0220764 0.0193233 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.12 vpr 62.68 MiB -1 -1 0.26 18296 1 0.03 -1 -1 30296 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 23.7 MiB 0.29 1014 15523 4859 8256 2408 62.7 MiB 0.15 0.00 4.24664 -124.159 -4.24664 4.24664 0.67 0.00068871 0.000640466 0.0612794 0.056951 32 2519 21 6.65987e+06 304272 554710. 1919.41 0.92 0.145498 0.128993 22834 132086 -1 2110 26 1456 2226 166870 38789 3.18497 3.18497 -112.254 -3.18497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.033988 0.029536 138 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.40 vpr 62.61 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.6 MiB 0.25 813 6133 1250 4669 214 62.6 MiB 0.07 0.00 4.31499 -129.627 -4.31499 4.31499 0.69 0.000719058 0.000668486 0.0253396 0.0235579 30 1973 21 6.65987e+06 304272 526063. 1820.29 2.40 0.194829 0.168034 22546 126617 -1 1695 21 1155 1730 101267 23759 3.45917 3.45917 -120.941 -3.45917 0 0 666494. 2306.21 0.19 0.07 0.07 -1 -1 0.19 0.0291484 0.0254468 130 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.07 vpr 62.63 MiB -1 -1 0.22 18100 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1032 14575 3712 8961 1902 62.6 MiB 0.15 0.00 4.48612 -136.801 -4.48612 4.48612 0.66 0.000701923 0.000651851 0.0529997 0.0492337 32 2663 22 6.65987e+06 342306 554710. 1919.41 0.98 0.121439 0.108217 22834 132086 -1 2268 22 1461 2460 182454 41825 3.81371 3.81371 -134.147 -3.81371 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0303381 0.0264614 132 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.82 vpr 62.18 MiB -1 -1 0.24 17912 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 23.5 MiB 0.27 845 7820 1849 5541 430 62.2 MiB 0.08 0.00 4.62977 -131.711 -4.62977 4.62977 0.67 0.000588335 0.000546861 0.0287476 0.0267302 30 1850 19 6.65987e+06 202848 526063. 1820.29 0.78 0.0982659 0.0862424 22546 126617 -1 1669 17 719 977 60179 14057 3.03551 3.03551 -110.068 -3.03551 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.0213566 0.0187668 103 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.98 vpr 62.58 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30516 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 319 272 1 169 82 17 17 289 -1 unnamed_device 23.9 MiB 0.36 770 10050 2757 6264 1029 62.6 MiB 0.10 0.00 3.69598 -115.146 -3.69598 3.69598 0.70 0.000638278 0.000593236 0.038393 0.0356819 32 2129 24 6.65987e+06 240882 554710. 1919.41 0.87 0.117154 0.103002 22834 132086 -1 1830 22 1219 1808 127557 30445 3.02177 3.02177 -109.858 -3.02177 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0277662 0.0241712 112 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.56 vpr 62.48 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.5 MiB 0.26 862 12839 3032 8956 851 62.5 MiB 0.11 0.00 3.34001 -95.8914 -3.34001 3.34001 0.69 0.000654761 0.0006065 0.0414346 0.0384863 30 1980 21 6.65987e+06 418374 526063. 1820.29 2.46 0.200233 0.173356 22546 126617 -1 1669 18 962 1743 95030 22615 2.43511 2.43511 -91.9636 -2.43511 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0242043 0.0211557 123 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.93 vpr 62.09 MiB -1 -1 0.17 18004 1 0.03 -1 -1 30388 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.4 MiB 0.22 923 12623 3487 7239 1897 62.1 MiB 0.10 0.00 4.05815 -100.085 -4.05815 4.05815 0.66 0.000455728 0.000417435 0.0360236 0.033494 26 2151 41 6.65987e+06 443730 477104. 1650.88 0.97 0.122451 0.106933 21682 110474 -1 1846 35 1346 2687 324830 124278 3.61745 3.61745 -101.557 -3.61745 0 0 585099. 2024.56 0.17 0.13 0.10 -1 -1 0.17 0.0364831 0.0313823 115 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.64 vpr 62.44 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30384 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 23.5 MiB 0.19 738 13937 5869 7500 568 62.4 MiB 0.13 0.00 3.86584 -113.256 -3.86584 3.86584 0.67 0.000629094 0.000584507 0.0545975 0.0506879 28 1945 22 6.65987e+06 215526 500653. 1732.36 2.69 0.207521 0.180342 21970 115934 -1 1763 19 1171 2031 154935 35450 3.26357 3.26357 -110.084 -3.26357 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0243133 0.0211944 108 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.90 vpr 62.57 MiB -1 -1 0.25 18212 1 0.03 -1 -1 30164 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 23.8 MiB 0.27 969 14724 4160 8401 2163 62.6 MiB 0.14 0.00 3.82038 -130.284 -3.82038 3.82038 0.66 0.000663645 0.000616253 0.0555336 0.0515748 32 2443 23 6.65987e+06 253560 554710. 1919.41 0.85 0.135273 0.119779 22834 132086 -1 2030 19 1209 1753 133147 30661 2.98331 2.98331 -122.095 -2.98331 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0255938 0.0223343 120 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.98 vpr 62.36 MiB -1 -1 0.19 17612 1 0.03 -1 -1 30380 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.16 1063 16295 4388 9974 1933 62.4 MiB 0.14 0.00 4.27726 -124.126 -4.27726 4.27726 0.73 0.000626724 0.000583149 0.049799 0.0463776 32 2368 21 6.65987e+06 405696 554710. 1919.41 0.88 0.122785 0.108843 22834 132086 -1 2139 23 1457 2604 179250 41684 3.24771 3.24771 -115.163 -3.24771 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282668 0.024576 127 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.24 vpr 63.07 MiB -1 -1 0.24 18152 1 0.03 -1 -1 30476 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1170 8402 2051 5537 814 63.1 MiB 0.10 0.00 5.08418 -160.146 -5.08418 5.08418 0.67 0.000714367 0.000663981 0.0341353 0.0317017 28 3046 20 6.65987e+06 278916 500653. 1732.36 3.05 0.219994 0.189943 21970 115934 -1 2524 22 1589 2280 166814 38342 4.15751 4.15751 -149.968 -4.15751 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0304105 0.0265602 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.64 vpr 62.78 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30288 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 23.9 MiB 0.19 1091 17397 4924 9824 2649 62.8 MiB 0.16 0.00 5.003 -142.071 -5.003 5.003 0.66 0.000739374 0.000686382 0.0613591 0.0568856 26 2904 33 6.65987e+06 405696 477104. 1650.88 1.71 0.164721 0.145523 21682 110474 -1 2489 23 1573 2975 231239 53660 4.26683 4.26683 -144.295 -4.26683 0 0 585099. 2024.56 0.16 0.06 0.06 -1 -1 0.16 0.0180466 0.0159777 142 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.00 vpr 62.87 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30392 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1091 6681 1303 5078 300 62.9 MiB 0.08 0.00 4.26912 -136.659 -4.26912 4.26912 0.66 0.000754003 0.000701039 0.0240421 0.0223432 28 2817 25 6.65987e+06 469086 500653. 1732.36 2.87 0.215349 0.185396 21970 115934 -1 2390 24 1458 2683 207005 46217 3.57931 3.57931 -129.096 -3.57931 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.0340417 0.0296463 140 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.60 vpr 62.07 MiB -1 -1 0.12 18084 1 0.03 -1 -1 30136 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.5 MiB 0.22 870 11106 2831 6524 1751 62.1 MiB 0.10 0.00 3.61906 -110.424 -3.61906 3.61906 0.66 0.000582257 0.000542598 0.0388647 0.0362109 30 1839 21 6.65987e+06 240882 526063. 1820.29 0.79 0.104429 0.0923854 22546 126617 -1 1563 18 819 1314 75712 17626 2.45705 2.45705 -95.6578 -2.45705 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0211244 0.0184545 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.32 vpr 62.71 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30424 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 23.8 MiB 0.25 978 15203 5869 8044 1290 62.7 MiB 0.15 0.00 4.78844 -136.276 -4.78844 4.78844 0.68 0.000714547 0.000662036 0.0633365 0.0587539 30 2196 21 6.65987e+06 266238 526063. 1820.29 2.18 0.226525 0.197633 22546 126617 -1 1952 18 1077 1734 113396 24849 3.37542 3.37542 -122.74 -3.37542 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0269284 0.0236304 137 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.19 vpr 62.71 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1105 10813 2684 6840 1289 62.7 MiB 0.11 0.00 4.95137 -146.216 -4.95137 4.95137 0.66 0.000691158 0.000643401 0.0411672 0.038313 26 3219 39 6.65987e+06 304272 477104. 1650.88 2.03 0.148146 0.130226 21682 110474 -1 2516 21 1882 2878 255132 54414 3.74651 3.74651 -135.317 -3.74651 0 0 585099. 2024.56 0.17 0.10 0.10 -1 -1 0.17 0.0289725 0.0252912 138 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.26 vpr 62.71 MiB -1 -1 0.23 18344 1 0.03 -1 -1 30200 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1080 15187 4594 8064 2529 62.7 MiB 0.14 0.00 5.08067 -147.956 -5.08067 5.08067 0.68 0.000690323 0.000641978 0.0532972 0.0495261 32 2590 22 6.65987e+06 354984 554710. 1919.41 0.90 0.139778 0.123739 22834 132086 -1 2166 20 1488 2320 169566 38315 4.27397 4.27397 -141.786 -4.27397 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0274708 0.0240602 146 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.72 vpr 62.62 MiB -1 -1 0.25 18368 1 0.03 -1 -1 30304 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 23.8 MiB 1.08 986 11433 3001 7531 901 62.6 MiB 0.11 0.00 4.29269 -128.336 -4.29269 4.29269 0.66 0.00072422 0.000672726 0.0420014 0.0390009 32 2266 22 6.65987e+06 393018 554710. 1919.41 0.84 0.127646 0.112067 22834 132086 -1 2030 23 1472 2483 170176 40089 3.01711 3.01711 -114.453 -3.01711 0 0 701300. 2426.64 0.20 0.08 0.08 -1 -1 0.20 0.0320172 0.0278417 133 83 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.05 vpr 62.56 MiB -1 -1 0.22 18192 1 0.04 -1 -1 30276 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 23.8 MiB 0.27 1063 15273 4695 8692 1886 62.6 MiB 0.16 0.00 4.80469 -139.024 -4.80469 4.80469 0.66 0.000723024 0.000671928 0.0638893 0.0593223 32 2629 23 6.65987e+06 253560 554710. 1919.41 0.90 0.154314 0.137214 22834 132086 -1 2268 18 1507 2677 195261 43968 3.62631 3.62631 -130.943 -3.62631 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0271216 0.0238276 133 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.09 vpr 62.94 MiB -1 -1 0.26 18196 1 0.03 -1 -1 30324 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 24.1 MiB 0.33 958 9738 2610 6016 1112 62.9 MiB 0.10 0.00 4.45269 -125.734 -4.45269 4.45269 0.69 0.000725274 0.00067332 0.0373197 0.0346355 32 2235 18 6.65987e+06 367662 554710. 1919.41 0.88 0.119924 0.105395 22834 132086 -1 1952 21 1256 2061 148316 34812 3.04431 3.04431 -110.646 -3.04431 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.029623 0.025813 131 85 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.71 vpr 61.92 MiB -1 -1 0.20 17680 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.2 MiB 0.18 690 12416 3929 6813 1674 61.9 MiB 0.11 0.00 3.74649 -110.352 -3.74649 3.74649 0.66 0.000557414 0.000519922 0.0427101 0.0398028 30 1513 21 6.65987e+06 190170 526063. 1820.29 1.81 0.169665 0.147737 22546 126617 -1 1376 20 710 1066 67918 15837 2.57525 2.57525 -98.4721 -2.57525 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0222036 0.0193792 96 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.00 vpr 62.86 MiB -1 -1 0.25 18416 1 0.03 -1 -1 30452 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 23.7 MiB 0.23 960 15004 4235 7978 2791 62.9 MiB 0.14 0.00 4.36949 -132.189 -4.36949 4.36949 0.66 0.000723217 0.000671737 0.0535827 0.0497539 32 2280 23 6.65987e+06 380340 554710. 1919.41 0.86 0.14112 0.124742 22834 132086 -1 1948 22 1416 2287 178164 39744 3.46911 3.46911 -125.161 -3.46911 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0315064 0.0274582 130 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.26 vpr 62.75 MiB -1 -1 0.19 18204 1 0.03 -1 -1 30380 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1050 14907 5385 7856 1666 62.8 MiB 0.16 0.00 4.72838 -146.592 -4.72838 4.72838 0.66 0.000767601 0.000705834 0.0653483 0.0607001 32 2640 43 6.65987e+06 253560 554710. 1919.41 1.03 0.179413 0.158519 22834 132086 -1 2299 33 2450 3980 449977 173095 3.85597 3.85597 -139.592 -3.85597 0 0 701300. 2426.64 0.20 0.19 0.13 -1 -1 0.20 0.0471833 0.0408889 147 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.39 vpr 62.14 MiB -1 -1 0.19 18088 1 0.02 -1 -1 30540 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 23.5 MiB 0.22 871 13403 4770 6898 1735 62.1 MiB 0.12 0.00 4.19052 -118.124 -4.19052 4.19052 0.66 0.000595239 0.000554181 0.0452558 0.0421101 30 2034 20 6.65987e+06 240882 526063. 1820.29 2.43 0.188419 0.163712 22546 126617 -1 1822 18 870 1143 89550 19468 2.90751 2.90751 -108.874 -2.90751 0 0 666494. 2306.21 0.21 0.05 0.11 -1 -1 0.21 0.022161 0.0194585 111 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.72 vpr 61.90 MiB -1 -1 0.19 17784 1 0.03 -1 -1 30392 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63388 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.4 MiB 0.14 780 8136 2089 5541 506 61.9 MiB 0.07 0.00 3.80235 -109.245 -3.80235 3.80235 0.66 0.000546806 0.000508808 0.0261836 0.0243519 26 2013 29 6.65987e+06 266238 477104. 1650.88 0.90 0.0984916 0.0861105 21682 110474 -1 1810 21 1146 1877 153537 34871 3.03417 3.03417 -108.934 -3.03417 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0229264 0.0199698 106 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.75 vpr 63.12 MiB -1 -1 0.20 18232 1 0.03 -1 -1 30448 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1098 14939 3925 8967 2047 63.1 MiB 0.15 0.00 4.99418 -158.194 -4.99418 4.99418 0.66 0.000711839 0.000662152 0.0554973 0.05158 32 2678 24 6.65987e+06 316950 554710. 1919.41 2.57 0.268749 0.233041 22834 132086 -1 2339 18 1657 2174 176709 39281 4.06163 4.06163 -148.702 -4.06163 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0263938 0.0231965 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.48 vpr 62.77 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30268 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 23.8 MiB 0.44 1053 6923 1430 5143 350 62.8 MiB 0.08 0.00 5.07767 -147.587 -5.07767 5.07767 0.73 0.00071308 0.000663365 0.0264607 0.0245818 28 2822 20 6.65987e+06 354984 500653. 1732.36 1.18 0.117784 0.103251 21970 115934 -1 2407 20 1612 2506 187128 43634 4.37417 4.37417 -147.642 -4.37417 0 0 612192. 2118.31 0.18 0.08 0.13 -1 -1 0.18 0.0282845 0.024737 151 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.07 vpr 62.79 MiB -1 -1 0.19 18004 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 23.9 MiB 0.18 1223 15412 3918 10280 1214 62.8 MiB 0.15 0.00 5.24834 -141.684 -5.24834 5.24834 0.68 0.000717618 0.000666659 0.0498032 0.046248 36 2545 28 6.65987e+06 456408 612192. 2118.31 2.92 0.27362 0.237341 23410 145293 -1 2291 25 1470 2785 177956 39538 4.28903 4.28903 -136.112 -4.28903 0 0 782063. 2706.10 0.29 0.06 0.13 -1 -1 0.29 0.0225775 0.0201027 153 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.53 vpr 62.45 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30364 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 23.5 MiB 0.30 869 15423 3820 9178 2425 62.4 MiB 0.13 0.00 3.39798 -101.892 -3.39798 3.39798 0.66 0.000636588 0.000592132 0.0492151 0.0457647 32 1975 23 6.65987e+06 393018 554710. 1919.41 2.42 0.232317 0.201206 22834 132086 -1 1791 23 1362 2321 160586 38243 2.69151 2.69151 -98.0771 -2.69151 0 0 701300. 2426.64 0.22 0.04 0.15 -1 -1 0.22 0.016868 0.0148781 120 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.60 vpr 61.91 MiB -1 -1 0.19 17952 1 0.03 -1 -1 30276 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.12 593 9712 2515 6016 1181 61.9 MiB 0.08 0.00 3.49724 -93.393 -3.49724 3.49724 0.67 0.000414393 0.000381469 0.0306288 0.0283956 28 1575 20 6.65987e+06 266238 500653. 1732.36 0.79 0.09406 0.0824269 21970 115934 -1 1453 18 952 1469 116237 27591 2.84397 2.84397 -94.8985 -2.84397 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0202865 0.017693 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.92 vpr 62.78 MiB -1 -1 0.25 18460 1 0.03 -1 -1 30316 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1325 16572 5545 8395 2632 62.8 MiB 0.18 0.00 4.13297 -134.503 -4.13297 4.13297 0.69 0.000798405 0.000741185 0.0704138 0.0653924 28 3732 33 6.65987e+06 329628 500653. 1732.36 1.64 0.182647 0.161692 21970 115934 -1 2910 22 2032 3461 269192 58352 3.78985 3.78985 -132.845 -3.78985 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0348618 0.0304296 170 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.69 vpr 62.77 MiB -1 -1 0.20 18220 1 0.03 -1 -1 30452 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 24.0 MiB 0.86 1078 12528 3903 6326 2299 62.8 MiB 0.13 0.00 5.17417 -148.706 -5.17417 5.17417 0.69 0.000721174 0.000670216 0.0514234 0.0477201 32 2682 40 6.65987e+06 266238 554710. 1919.41 1.01 0.153869 0.135224 22834 132086 -1 2210 21 1701 2586 216602 47829 4.53217 4.53217 -149.34 -4.53217 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0297196 0.0259443 150 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.42 vpr 62.62 MiB -1 -1 0.17 18324 1 0.03 -1 -1 30532 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 331 280 1 175 83 17 17 289 -1 unnamed_device 23.6 MiB 0.85 898 12323 4450 5685 2188 62.6 MiB 0.12 0.00 4.15487 -129.388 -4.15487 4.15487 0.67 0.000666896 0.000619206 0.0481548 0.0447545 32 2292 24 6.65987e+06 240882 554710. 1919.41 0.85 0.128889 0.113815 22834 132086 -1 1956 18 1203 1755 145047 32577 3.35916 3.35916 -129.556 -3.35916 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0245635 0.021512 129 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.38 vpr 62.70 MiB -1 -1 0.16 18192 1 0.03 -1 -1 30344 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.6 MiB 0.16 992 12022 3497 7943 582 62.7 MiB 0.13 0.00 4.90813 -126.424 -4.90813 4.90813 0.67 0.000667725 0.0006214 0.0433447 0.0401337 32 2140 22 6.65987e+06 380340 554710. 1919.41 2.49 0.240608 0.207924 22834 132086 -1 1925 21 1081 1806 112206 27790 3.48705 3.48705 -114.539 -3.48705 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0277306 0.0242185 126 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.83 vpr 62.83 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30504 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1073 18054 5291 10324 2439 62.8 MiB 0.17 0.00 4.77546 -137.042 -4.77546 4.77546 0.70 0.000721607 0.000669232 0.0627811 0.0582997 30 2297 18 6.65987e+06 418374 526063. 1820.29 2.62 0.230184 0.201751 22546 126617 -1 2004 18 1180 1930 120975 26697 3.43717 3.43717 -122.972 -3.43717 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0271053 0.0237882 144 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.92 vpr 62.52 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30396 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.5 MiB 0.22 995 8073 1820 5530 723 62.5 MiB 0.08 0.00 3.66846 -111.424 -3.66846 3.66846 0.68 0.000653191 0.000606697 0.0273994 0.0254938 32 2372 20 6.65987e+06 393018 554710. 1919.41 0.90 0.104065 0.0910326 22834 132086 -1 2116 20 1245 2125 158081 35731 2.85591 2.85591 -105.849 -2.85591 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0260089 0.0226688 124 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.48 vpr 63.08 MiB -1 -1 0.21 18104 1 0.03 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1081 14713 4410 8000 2303 63.1 MiB 0.15 0.00 4.85897 -149.763 -4.85897 4.85897 0.69 0.000701304 0.000651983 0.0559858 0.0520752 32 3051 39 6.65987e+06 304272 554710. 1919.41 1.11 0.159838 0.140989 22834 132086 -1 2442 22 1985 3010 225131 52194 4.07205 4.07205 -141.281 -4.07205 0 0 701300. 2426.64 0.26 0.08 0.14 -1 -1 0.26 0.0295824 0.0258755 147 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.62 vpr 62.98 MiB -1 -1 0.22 18148 1 0.03 -1 -1 30076 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1057 18773 5404 10789 2580 63.0 MiB 0.13 0.00 4.57498 -141.429 -4.57498 4.57498 0.68 0.00074407 0.000691177 0.042258 0.0387667 26 2887 23 6.65987e+06 431052 477104. 1650.88 2.38 0.215896 0.186845 21682 110474 -1 2397 18 1290 2019 146660 33279 3.71257 3.71257 -132.431 -3.71257 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0322214 0.0285523 143 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.67 vpr 62.16 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30484 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 269 229 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.12 522 12528 3273 8240 1015 62.2 MiB 0.10 0.00 3.78218 -105.823 -3.78218 3.78218 0.66 0.000572199 0.000532433 0.0451911 0.042036 32 1502 24 6.65987e+06 215526 554710. 1919.41 0.80 0.115565 0.102085 22834 132086 -1 1376 20 919 1272 108408 25987 3.03537 3.03537 -98.5881 -3.03537 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0229538 0.0200102 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.31 vpr 62.79 MiB -1 -1 0.23 18240 1 0.03 -1 -1 30344 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 23.8 MiB 0.24 859 7770 1621 5832 317 62.8 MiB 0.08 0.00 4.1395 -122.394 -4.1395 4.1395 0.67 0.000482624 0.000441846 0.0268299 0.0248218 26 2383 37 6.65987e+06 253560 477104. 1650.88 2.34 0.184491 0.158637 21682 110474 -1 1928 23 1312 1714 141396 32487 3.37517 3.37517 -120.213 -3.37517 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0280413 0.0243193 117 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.85 MiB -1 -1 0.21 18180 1 0.03 -1 -1 30384 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1006 6364 1268 4717 379 62.9 MiB 0.07 0.00 4.54692 -120.859 -4.54692 4.54692 0.66 0.000658506 0.000610641 0.0206399 0.0192138 26 2479 25 6.65987e+06 469086 477104. 1650.88 0.90 0.0904621 0.079103 21682 110474 -1 2227 21 1387 2520 179851 42241 4.07611 4.07611 -126.277 -4.07611 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0278836 0.0243747 129 33 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.84 vpr 62.18 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30276 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 23.5 MiB 0.21 903 9516 2433 6273 810 62.2 MiB 0.09 0.00 4.23586 -115.879 -4.23586 4.23586 0.66 0.00048026 0.000440763 0.0319083 0.0296981 26 2151 21 6.65987e+06 266238 477104. 1650.88 1.01 0.0998604 0.0877249 21682 110474 -1 1944 20 976 1248 91213 21369 3.19091 3.19091 -109.113 -3.19091 0 0 585099. 2024.56 0.17 0.06 0.12 -1 -1 0.17 0.022493 0.0195915 110 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.81 vpr 62.21 MiB -1 -1 0.18 17924 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 23.6 MiB 0.16 840 12980 3474 8543 963 62.2 MiB 0.11 0.00 3.73708 -117.005 -3.73708 3.73708 0.77 0.000598588 0.000556921 0.0471544 0.0438906 32 2020 18 6.65987e+06 202848 554710. 1919.41 0.83 0.114841 0.101791 22834 132086 -1 1831 23 1462 2541 202733 45407 2.67845 2.67845 -105.711 -2.67845 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0264113 0.0229324 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.89 vpr 62.80 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30396 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 23.9 MiB 0.26 932 18098 5272 9901 2925 62.8 MiB 0.16 0.00 4.00372 -119.439 -4.00372 4.00372 0.75 0.000722305 0.000670399 0.0610117 0.0566315 32 2122 19 6.65987e+06 443730 554710. 1919.41 2.57 0.256161 0.22266 22834 132086 -1 1876 20 1378 2071 131991 31106 2.96231 2.96231 -109.45 -2.96231 0 0 701300. 2426.64 0.26 0.07 0.12 -1 -1 0.26 0.0291599 0.0257245 135 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.23 vpr 62.22 MiB -1 -1 0.20 17980 1 0.03 -1 -1 30320 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63712 31 32 265 230 1 164 82 17 17 289 -1 unnamed_device 23.6 MiB 0.23 729 5422 1011 4209 202 62.2 MiB 0.06 0.00 3.89447 -116.94 -3.89447 3.89447 0.71 0.000572748 0.000533802 0.0194501 0.0181287 30 1860 22 6.65987e+06 240882 526063. 1820.29 2.31 0.14876 0.127738 22546 126617 -1 1574 17 803 1153 64453 16278 2.86137 2.86137 -106.867 -2.86137 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0203347 0.0178089 110 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.16 vpr 62.79 MiB -1 -1 0.24 18408 1 0.03 -1 -1 30196 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 23.7 MiB 0.40 979 15863 4619 8770 2474 62.8 MiB 0.14 0.00 3.70512 -117.413 -3.70512 3.70512 0.67 0.000689793 0.000640834 0.053436 0.0496426 28 2333 21 6.65987e+06 393018 500653. 1732.36 0.96 0.136089 0.120555 21970 115934 -1 2040 22 1270 2188 155426 34369 2.66551 2.66551 -108.604 -2.66551 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0351114 0.0305694 126 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.50 vpr 62.84 MiB -1 -1 0.21 18200 1 0.03 -1 -1 30284 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.0 MiB 0.75 976 17159 4932 10231 1996 62.8 MiB 0.15 0.00 4.34696 -137.767 -4.34696 4.34696 0.67 0.000744133 0.000690497 0.0617451 0.057313 32 2285 23 6.65987e+06 405696 554710. 1919.41 0.85 0.151265 0.133989 22834 132086 -1 1959 19 1321 1855 128822 30635 3.45123 3.45123 -134.419 -3.45123 0 0 701300. 2426.64 0.23 0.07 0.13 -1 -1 0.23 0.0286514 0.0250679 138 91 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.10 vpr 62.36 MiB -1 -1 0.22 17940 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.5 MiB 0.33 668 7781 1699 5777 305 62.4 MiB 0.08 0.00 3.26384 -99.5047 -3.26384 3.26384 0.71 0.000621765 0.000578209 0.0297913 0.0276855 28 2035 27 6.65987e+06 215526 500653. 1732.36 1.06 0.11092 0.0969462 21970 115934 -1 1594 20 943 1429 115173 27681 2.87391 2.87391 -102.619 -2.87391 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0247859 0.0215885 104 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.98 vpr 62.20 MiB -1 -1 0.22 17956 1 0.02 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63696 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 794 6203 1260 4522 421 62.2 MiB 0.07 0.00 4.22769 -129.19 -4.22769 4.22769 0.72 0.000615982 0.000572738 0.0232717 0.0216618 28 2478 30 6.65987e+06 240882 500653. 1732.36 1.03 0.0974603 0.0850016 21970 115934 -1 2072 18 1317 1923 149105 37380 3.16031 3.16031 -121.312 -3.16031 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0227618 0.0198998 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.10 vpr 62.65 MiB -1 -1 0.24 18364 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 23.8 MiB 0.19 982 13505 4715 6575 2215 62.6 MiB 0.13 0.00 4.5425 -135.474 -4.5425 4.5425 0.74 0.000657123 0.000610447 0.04922 0.0457271 32 2569 24 6.65987e+06 278916 554710. 1919.41 0.88 0.130632 0.115553 22834 132086 -1 2078 23 1533 2145 153331 36456 3.62971 3.62971 -124.599 -3.62971 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0295048 0.0257606 130 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.04 vpr 62.49 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30116 -1 -1 28 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 23.5 MiB 0.41 892 10583 2559 7230 794 62.5 MiB 0.10 0.00 4.50014 -117.225 -4.50014 4.50014 0.65 0.000652318 0.000606564 0.0371529 0.0345546 32 2068 20 6.65987e+06 354984 554710. 1919.41 0.82 0.114506 0.100734 22834 132086 -1 1836 19 911 1491 100749 23800 3.02731 3.02731 -105.23 -3.02731 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0253089 0.0221463 121 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 7.26 vpr 62.52 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 23.9 MiB 0.35 1106 7767 1737 5626 404 62.5 MiB 0.10 0.00 5.13083 -160.454 -5.13083 5.13083 0.65 0.000757533 0.000704214 0.033697 0.0313447 28 2891 50 6.65987e+06 291594 500653. 1732.36 4.05 0.28538 0.246262 21970 115934 -1 2428 22 1669 2470 189430 43116 4.20151 4.20151 -148.34 -4.20151 0 0 612192. 2118.31 0.19 0.10 0.08 -1 -1 0.19 0.0375344 0.0330753 153 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.70 vpr 61.76 MiB -1 -1 0.22 17756 1 0.03 -1 -1 30264 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63240 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.1 MiB 0.14 592 6556 1291 4488 777 61.8 MiB 0.05 0.00 3.5592 -94.6383 -3.5592 3.5592 0.66 0.000524378 0.000488364 0.0215942 0.0201134 32 1586 18 6.65987e+06 228204 554710. 1919.41 0.84 0.0820574 0.0716709 22834 132086 -1 1290 19 727 1139 67522 18762 2.64351 2.64351 -91.6369 -2.64351 0 0 701300. 2426.64 0.20 0.05 0.13 -1 -1 0.20 0.0207792 0.0181492 96 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.72 vpr 62.99 MiB -1 -1 0.26 18400 1 0.03 -1 -1 30352 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1151 14083 3602 8814 1667 63.0 MiB 0.14 0.00 4.1637 -141.581 -4.1637 4.1637 0.70 0.000770978 0.000715654 0.0518304 0.0480963 26 2790 35 6.65987e+06 418374 477104. 1650.88 1.50 0.16488 0.145176 21682 110474 -1 2446 21 1740 2547 209902 46025 3.82177 3.82177 -144.768 -3.82177 0 0 585099. 2024.56 0.17 0.09 0.07 -1 -1 0.17 0.0320816 0.0280067 144 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.94 vpr 62.64 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30256 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.7 MiB 0.25 838 12464 4352 6338 1774 62.6 MiB 0.10 0.00 3.54047 -123.895 -3.54047 3.54047 0.74 0.000710915 0.000660473 0.041748 0.0386827 30 1878 23 6.65987e+06 202848 526063. 1820.29 0.83 0.127732 0.112317 22546 126617 -1 1542 22 1226 1790 98805 26832 2.87877 2.87877 -118.928 -2.87877 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0376697 0.0331185 115 96 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.32 vpr 62.64 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30264 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 23.6 MiB 0.35 983 16079 4676 8844 2559 62.6 MiB 0.14 0.00 4.19332 -128.664 -4.19332 4.19332 0.67 0.000711502 0.000660195 0.0555008 0.05152 32 2255 22 6.65987e+06 393018 554710. 1919.41 0.85 0.14076 0.124689 22834 132086 -1 1913 18 945 1398 91740 22097 3.08831 3.08831 -113.899 -3.08831 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0263516 0.0230907 130 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.25 vpr 62.55 MiB -1 -1 0.24 18300 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1359 11969 3395 7471 1103 62.5 MiB 0.15 0.00 6.16929 -186.366 -6.16929 6.16929 0.67 0.000777118 0.000722055 0.049836 0.0463502 30 3247 30 6.65987e+06 316950 526063. 1820.29 0.94 0.151504 0.133594 22546 126617 -1 2548 18 1419 2069 117302 27620 4.70482 4.70482 -164.568 -4.70482 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0259926 0.0230397 168 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.66 vpr 61.88 MiB -1 -1 0.21 17996 1 0.02 -1 -1 30160 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.1 MiB 0.20 745 9881 2719 6136 1026 61.9 MiB 0.08 0.00 3.31307 -103.296 -3.31307 3.31307 0.66 0.000500328 0.000465663 0.0308964 0.0287698 30 1522 19 6.65987e+06 215526 526063. 1820.29 1.77 0.14317 0.123892 22546 126617 -1 1344 14 542 690 48805 11023 2.16777 2.16777 -89.6123 -2.16777 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0154461 0.0135755 86 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.75 vpr 62.16 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30404 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.6 MiB 0.15 602 12196 3365 6955 1876 62.2 MiB 0.10 0.00 3.90063 -110.636 -3.90063 3.90063 0.68 0.000597987 0.000556361 0.0459601 0.0427385 30 1518 19 6.65987e+06 202848 526063. 1820.29 0.79 0.115422 0.102154 22546 126617 -1 1262 17 645 1082 59268 14532 2.86471 2.86471 -99.436 -2.86471 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.021458 0.0187713 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.16 vpr 62.33 MiB -1 -1 0.22 18028 1 0.03 -1 -1 30108 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.6 MiB 0.13 882 9385 2433 6375 577 62.3 MiB 0.09 0.00 3.38183 -110.848 -3.38183 3.38183 0.67 0.00061799 0.000574051 0.0330518 0.0306884 26 2388 28 6.65987e+06 266238 477104. 1650.88 1.31 0.113634 0.0994382 21682 110474 -1 2044 21 1367 2481 205189 45540 2.74151 2.74151 -112.085 -2.74151 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0257234 0.0223307 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.85 vpr 61.84 MiB -1 -1 0.19 17912 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.1 MiB 0.12 451 9966 3308 4450 2208 61.8 MiB 0.07 0.00 3.08755 -72.8894 -3.08755 3.08755 0.67 0.000479244 0.000445411 0.027257 0.0253137 30 1266 42 6.65987e+06 342306 526063. 1820.29 0.96 0.0989247 0.0862206 22546 126617 -1 972 64 992 2005 378014 232494 3.12459 3.12459 -67.2426 -3.12459 0 0 666494. 2306.21 0.19 0.17 0.12 -1 -1 0.19 0.0498269 0.0425325 89 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.98 vpr 62.79 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 23.7 MiB 0.27 1057 14724 4445 8208 2071 62.8 MiB 0.16 0.00 3.92752 -127.443 -3.92752 3.92752 0.66 0.000728069 0.000676523 0.0640695 0.0594564 32 2593 23 6.65987e+06 253560 554710. 1919.41 0.86 0.151756 0.134585 22834 132086 -1 2333 21 1449 2571 195752 43834 3.59845 3.59845 -126.517 -3.59845 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0301388 0.0263272 135 72 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.60 vpr 62.76 MiB -1 -1 0.25 18236 1 0.03 -1 -1 30280 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 23.9 MiB 0.36 971 8856 1873 6469 514 62.8 MiB 0.10 0.00 4.32075 -139.202 -4.32075 4.32075 0.66 0.00077141 0.000715886 0.0336871 0.0312435 30 2154 18 6.65987e+06 418374 526063. 1820.29 2.38 0.201117 0.174722 22546 126617 -1 1832 18 1023 1581 85815 20192 3.08137 3.08137 -119.737 -3.08137 0 0 666494. 2306.21 0.25 0.06 0.09 -1 -1 0.25 0.0285435 0.0250344 142 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.74 vpr 63.63 MiB -1 -1 0.16 18236 1 0.03 -1 -1 30036 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 354 285 1 194 77 17 17 289 -1 unnamed_device 24.9 MiB 2.46 819 9531 4011 5172 348 63.6 MiB 0.09 0.00 5.3162 -155.272 -5.3162 5.3162 0.70 0.000709654 0.000658433 0.044232 0.0411095 46 2487 41 6.95648e+06 188184 828058. 2865.25 3.34 0.215474 0.188142 28066 200906 -1 2026 23 1583 2386 227929 54567 4.62211 4.62211 -154.484 -4.62211 0 0 1.01997e+06 3529.29 0.29 0.09 0.18 -1 -1 0.29 0.0271167 0.0239016 81 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.47 vpr 63.48 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30540 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65008 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 24.5 MiB 2.53 826 11487 4560 5338 1589 63.5 MiB 0.11 0.00 4.55677 -137.33 -4.55677 4.55677 0.72 0.000715299 0.000658954 0.0524854 0.0487719 38 2540 31 6.95648e+06 217135 678818. 2348.85 3.93 0.285493 0.246882 26626 170182 -1 2182 20 1894 2678 218279 46479 4.51791 4.51791 -149.379 -4.51791 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0286476 0.0250469 80 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.53 vpr 63.09 MiB -1 -1 0.18 18448 1 0.03 -1 -1 30308 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 24.5 MiB 1.25 827 10726 4133 5228 1365 63.1 MiB 0.09 0.00 3.76045 -118.752 -3.76045 3.76045 0.68 0.00048374 0.000441662 0.034017 0.0312821 40 2554 26 6.95648e+06 217135 706193. 2443.58 4.46 0.261354 0.224739 26914 176310 -1 2163 23 1577 2193 187964 39693 3.66072 3.66072 -127.257 -3.66072 0 0 926341. 3205.33 0.24 0.08 0.16 -1 -1 0.24 0.0281595 0.0245189 76 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.25 vpr 63.26 MiB -1 -1 0.23 18264 1 0.03 -1 -1 30312 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 24.3 MiB 0.36 723 14356 5004 7145 2207 63.3 MiB 0.11 0.00 4.16078 -115.782 -4.16078 4.16078 0.68 0.000629934 0.000585159 0.0554285 0.0515678 38 2210 49 6.95648e+06 275038 678818. 2348.85 1.99 0.204853 0.178595 26626 170182 -1 1597 21 1480 2455 149686 39777 4.58586 4.58586 -129.262 -4.58586 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0266722 0.0232251 71 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.34 vpr 63.31 MiB -1 -1 0.24 18104 1 0.03 -1 -1 30444 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 24.4 MiB 0.78 725 12292 5111 6719 462 63.3 MiB 0.10 0.00 4.31509 -131.389 -4.31509 4.31509 0.68 0.000668524 0.000617501 0.0505118 0.0468024 44 2628 39 6.95648e+06 231611 787024. 2723.27 2.59 0.159568 0.140114 27778 195446 -1 2002 22 1473 2461 206209 45810 4.63321 4.63321 -144.751 -4.63321 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0296159 0.0257954 73 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.62 vpr 63.54 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 780 12919 4595 6436 1888 63.5 MiB 0.12 0.00 3.0405 -114.196 -3.0405 3.0405 0.68 0.000728425 0.00067592 0.0527007 0.0489595 40 2350 24 6.95648e+06 303989 706193. 2443.58 2.48 0.198567 0.173849 26914 176310 -1 1993 23 1558 2361 235074 50536 3.23447 3.23447 -122.866 -3.23447 0 0 926341. 3205.33 0.24 0.09 0.16 -1 -1 0.24 0.032028 0.0278731 79 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.89 vpr 62.71 MiB -1 -1 0.21 17860 1 0.03 -1 -1 30768 -1 -1 14 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 27 32 259 221 1 127 73 17 17 289 -1 unnamed_device 24.0 MiB 4.70 438 12233 4755 5541 1937 62.7 MiB 0.09 0.00 3.56899 -93.4053 -3.56899 3.56899 0.67 0.000553567 0.000515629 0.0465873 0.0434014 38 1424 22 6.95648e+06 202660 678818. 2348.85 3.31 0.209846 0.181435 26626 170182 -1 1077 17 761 1211 79644 18967 2.87042 2.87042 -93.9521 -2.87042 0 0 902133. 3121.57 0.23 0.05 0.18 -1 -1 0.23 0.0198549 0.0173408 53 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.65 vpr 62.90 MiB -1 -1 0.17 17776 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.3 MiB 0.43 651 12373 4268 5547 2558 62.9 MiB 0.09 0.00 2.95842 -91.5041 -2.95842 2.95842 0.78 0.000590199 0.000548667 0.0397507 0.0369183 46 2209 26 6.95648e+06 361892 828058. 2865.25 4.12 0.215651 0.18616 28066 200906 -1 1528 20 1024 1644 126340 29774 2.98497 2.98497 -95.951 -2.98497 0 0 1.01997e+06 3529.29 0.37 0.06 0.20 -1 -1 0.37 0.0237975 0.0208056 69 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 7.16 vpr 63.12 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30128 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 24.3 MiB 1.90 588 11234 4630 5959 645 63.1 MiB 0.10 0.00 3.43049 -116.456 -3.43049 3.43049 0.71 0.000637389 0.000591699 0.0486868 0.045274 46 2138 37 6.95648e+06 159232 828058. 2865.25 2.24 0.192341 0.16737 28066 200906 -1 1613 22 1267 1771 130611 31469 3.99756 3.99756 -128.928 -3.99756 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0272846 0.0237506 66 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 5.96 vpr 62.94 MiB -1 -1 0.22 17880 1 0.03 -1 -1 30120 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 1.21 622 12629 5382 6987 260 62.9 MiB 0.11 0.00 3.30928 -114.751 -3.30928 3.30928 0.68 0.000638996 0.000595039 0.0535673 0.0498915 38 2059 36 6.95648e+06 144757 678818. 2348.85 1.90 0.171042 0.149877 26626 170182 -1 1539 21 1266 1783 148265 33150 3.14982 3.14982 -124.237 -3.14982 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0260731 0.0227467 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.09 vpr 63.03 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30336 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 24.5 MiB 1.68 499 7824 2588 3808 1428 63.0 MiB 0.07 0.00 3.43453 -102.152 -3.43453 3.43453 0.68 0.000611911 0.00056893 0.0332624 0.0309493 38 1752 37 6.95648e+06 173708 678818. 2348.85 1.59 0.148455 0.12892 26626 170182 -1 1326 21 1069 1514 115939 26552 3.07902 3.07902 -108.714 -3.07902 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0254112 0.0220926 55 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.12 vpr 62.91 MiB -1 -1 0.15 18044 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 24.4 MiB 1.45 641 8754 2760 4259 1735 62.9 MiB 0.08 0.00 3.28034 -110.937 -3.28034 3.28034 0.70 0.000713275 0.000664019 0.037778 0.035156 54 1307 45 6.95648e+06 144757 949917. 3286.91 4.54 0.232753 0.200554 29506 232905 -1 1088 22 1149 1563 98323 25859 2.96467 2.96467 -103.236 -2.96467 0 0 1.17392e+06 4061.99 0.41 0.06 0.20 -1 -1 0.41 0.0232038 0.0205418 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 8.43 vpr 63.57 MiB -1 -1 0.21 18124 1 0.03 -1 -1 30312 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 24.6 MiB 1.90 907 9881 2634 5845 1402 63.6 MiB 0.10 0.00 3.82352 -130.458 -3.82352 3.82352 0.74 0.000698839 0.000649248 0.0429732 0.0399656 38 2955 44 6.95648e+06 217135 678818. 2348.85 3.51 0.206402 0.179515 26626 170182 -1 2316 23 2013 2995 290641 58279 3.44857 3.44857 -130.713 -3.44857 0 0 902133. 3121.57 0.23 0.12 0.15 -1 -1 0.23 0.0346146 0.0302154 83 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 6.19 vpr 63.43 MiB -1 -1 0.19 18208 1 0.03 -1 -1 30220 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 24.5 MiB 0.83 823 10481 3378 5508 1595 63.4 MiB 0.09 0.00 4.48063 -137.796 -4.48063 4.48063 0.70 0.000708621 0.000657955 0.0417475 0.0387804 38 2517 26 6.95648e+06 318465 678818. 2348.85 2.42 0.188304 0.163806 26626 170182 -1 2065 20 1719 2505 231981 47305 4.15356 4.15356 -139.943 -4.15356 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0284899 0.0248684 75 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.96 vpr 62.71 MiB -1 -1 0.22 18056 1 0.03 -1 -1 30372 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 24.0 MiB 1.19 466 9684 3087 4807 1790 62.7 MiB 0.07 0.00 3.10275 -86.0216 -3.10275 3.10275 0.67 0.000539984 0.000502688 0.0357213 0.0332789 48 1264 25 6.95648e+06 188184 865456. 2994.66 1.92 0.14486 0.125793 28354 207349 -1 1002 19 851 1266 84217 21946 2.96287 2.96287 -87.8543 -2.96287 0 0 1.05005e+06 3633.38 0.31 0.05 0.18 -1 -1 0.31 0.0208811 0.0181847 55 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.10 vpr 63.37 MiB -1 -1 0.25 18356 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 370 297 1 181 81 17 17 289 -1 unnamed_device 24.4 MiB 1.03 775 13906 5829 7750 327 63.4 MiB 0.13 0.00 3.1265 -114.361 -3.1265 3.1265 0.68 0.000721187 0.000669412 0.0600526 0.0557428 46 2312 37 6.95648e+06 246087 828058. 2865.25 3.99 0.293183 0.253911 28066 200906 -1 1900 23 1616 2552 220573 47117 3.02787 3.02787 -121.71 -3.02787 0 0 1.01997e+06 3529.29 0.28 0.09 0.20 -1 -1 0.28 0.032198 0.0280316 77 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 8.78 vpr 63.36 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30088 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 24.4 MiB 1.92 747 12528 4608 6627 1293 63.4 MiB 0.11 0.00 4.17585 -130.558 -4.17585 4.17585 0.68 0.000687123 0.000639395 0.0543244 0.050577 46 2096 24 6.95648e+06 202660 828058. 2865.25 3.89 0.23537 0.204415 28066 200906 -1 1698 20 1513 2085 141000 32945 3.32147 3.32147 -122.644 -3.32147 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0278954 0.024418 79 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.62 vpr 62.84 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30300 -1 -1 9 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 24.3 MiB 0.85 713 11777 5007 6577 193 62.8 MiB 0.10 0.00 2.30911 -96.9749 -2.30911 2.30911 0.80 0.000648996 0.00060292 0.0523159 0.0485951 42 2008 47 6.95648e+06 130281 744469. 2576.02 3.72 0.271151 0.234539 27202 183097 -1 1664 19 1187 1768 172968 35245 2.45543 2.45543 -102.494 -2.45543 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.024973 0.0217825 57 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.69 vpr 62.63 MiB -1 -1 0.19 17984 1 0.03 -1 -1 30156 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 24.1 MiB 0.33 461 10800 4629 5825 346 62.6 MiB 0.07 0.00 2.11601 -78.0433 -2.11601 2.11601 0.69 0.000378959 0.000347362 0.0309402 0.0285027 36 1696 29 6.95648e+06 144757 648988. 2245.63 1.58 0.117287 0.101735 26050 158493 -1 1260 21 811 1065 112554 24104 2.46628 2.46628 -87.3645 -2.46628 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0203372 0.0176099 44 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 9.27 vpr 63.10 MiB -1 -1 0.19 17988 1 0.03 -1 -1 30400 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 24.5 MiB 2.59 809 7343 1906 5018 419 63.1 MiB 0.07 0.00 4.085 -135.532 -4.085 4.085 0.68 0.000609628 0.000566983 0.0305804 0.0285033 44 2187 26 6.95648e+06 173708 787024. 2723.27 3.77 0.220693 0.189734 27778 195446 -1 1736 22 1322 1829 185746 37640 3.73872 3.73872 -136.557 -3.73872 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0268868 0.0234433 69 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 8.17 vpr 63.55 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30384 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 24.5 MiB 0.69 652 8868 3175 4368 1325 63.5 MiB 0.08 0.00 3.70824 -121.183 -3.70824 3.70824 0.68 0.000693694 0.000643182 0.035732 0.0332077 48 2269 44 6.95648e+06 289514 865456. 2994.66 4.46 0.272216 0.234105 28354 207349 -1 1729 29 1974 2701 205341 50308 3.95661 3.95661 -131.137 -3.95661 0 0 1.05005e+06 3633.38 0.28 0.10 0.18 -1 -1 0.28 0.0369102 0.0320076 75 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 7.46 vpr 63.53 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30280 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 24.6 MiB 1.44 829 13358 4003 7025 2330 63.5 MiB 0.12 0.00 4.7576 -136.611 -4.7576 4.7576 0.68 0.000729855 0.00067885 0.0608405 0.056569 44 2997 48 6.95648e+06 202660 787024. 2723.27 3.01 0.218345 0.190341 27778 195446 -1 2084 21 1653 2584 243814 51380 4.29321 4.29321 -133.404 -4.29321 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0302827 0.0264641 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.69 vpr 62.49 MiB -1 -1 0.21 18032 1 0.02 -1 -1 30712 -1 -1 13 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 23.9 MiB 0.80 312 9123 3841 4664 618 62.5 MiB 0.06 0.00 2.23646 -64.6952 -2.23646 2.23646 0.68 0.000426061 0.000396126 0.0281445 0.0261689 38 1021 24 6.95648e+06 188184 678818. 2348.85 3.08 0.144696 0.124663 26626 170182 -1 768 19 550 671 50390 13315 2.25003 2.25003 -68.1429 -2.25003 0 0 902133. 3121.57 0.23 0.04 0.15 -1 -1 0.23 0.0166883 0.0145193 44 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.81 vpr 62.86 MiB -1 -1 0.21 17900 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 24.3 MiB 0.73 670 9543 3158 4645 1740 62.9 MiB 0.08 0.00 4.56626 -117.316 -4.56626 4.56626 0.68 0.000622356 0.000578904 0.0366523 0.034076 44 2267 26 6.95648e+06 217135 787024. 2723.27 4.21 0.25385 0.218815 27778 195446 -1 1602 28 1448 2388 179421 40665 4.06956 4.06956 -122.295 -4.06956 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0328755 0.0285831 66 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.51 vpr 62.48 MiB -1 -1 0.20 17500 1 0.02 -1 -1 29996 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.0 MiB 0.27 406 9906 4161 5525 220 62.5 MiB 0.06 0.00 2.18146 -70.2596 -2.18146 2.18146 0.68 0.000419734 0.000389296 0.029408 0.0273142 36 1318 31 6.95648e+06 115805 648988. 2245.63 1.54 0.117127 0.101713 26050 158493 -1 1010 18 647 699 71573 16854 1.96208 1.96208 -75.5094 -1.96208 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0155425 0.0135729 42 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.73 vpr 63.00 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30196 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 24.4 MiB 0.93 867 11740 4903 6637 200 63.0 MiB 0.10 0.00 4.50901 -127.255 -4.50901 4.50901 0.68 0.000644671 0.000599416 0.0460959 0.0428346 36 2734 50 6.95648e+06 217135 648988. 2245.63 2.83 0.172196 0.150293 26050 158493 -1 2155 20 1396 2160 208644 41889 3.98106 3.98106 -131.601 -3.98106 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0254251 0.0222 68 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 5.69 vpr 63.18 MiB -1 -1 0.12 17668 1 0.03 -1 -1 30392 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.5 MiB 0.52 712 11989 4478 6107 1404 63.2 MiB 0.10 0.00 3.03146 -100.511 -3.03146 3.03146 0.67 0.000638459 0.000593053 0.0433936 0.0403492 46 2233 44 6.95648e+06 303989 828058. 2865.25 2.33 0.190094 0.165188 28066 200906 -1 1723 26 1313 2128 175152 40900 3.55217 3.55217 -109.828 -3.55217 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0319544 0.0278781 74 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.56 vpr 63.32 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30104 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 24.4 MiB 0.85 860 15023 4398 9616 1009 63.3 MiB 0.13 0.00 4.41913 -133.119 -4.41913 4.41913 0.68 0.000675391 0.000627273 0.0591097 0.0549262 38 2706 45 6.95648e+06 275038 678818. 2348.85 3.75 0.221344 0.193321 26626 170182 -1 2154 21 1310 2015 173114 35307 4.12462 4.12462 -134.554 -4.12462 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0283127 0.0247265 72 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.71 vpr 62.89 MiB -1 -1 0.24 17956 1 0.04 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 24.4 MiB 0.92 767 12319 3787 7504 1028 62.9 MiB 0.10 0.00 3.08875 -100.244 -3.08875 3.08875 0.73 0.00059937 0.000557565 0.0499065 0.0464519 36 2179 25 6.95648e+06 144757 648988. 2245.63 1.86 0.150333 0.131943 26050 158493 -1 1893 26 1241 1927 262841 76248 3.09632 3.09632 -116.758 -3.09632 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0299065 0.0259115 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 6.43 vpr 62.86 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30240 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 24.2 MiB 0.26 475 11260 3973 5458 1829 62.9 MiB 0.08 0.00 3.16808 -92.8265 -3.16808 3.16808 0.68 0.000564051 0.000524537 0.0389143 0.0361903 44 1432 26 6.95648e+06 260562 787024. 2723.27 3.20 0.207604 0.178811 27778 195446 -1 1134 17 848 1167 93380 23187 2.80357 2.80357 -95.1145 -2.80357 0 0 997811. 3452.63 0.26 0.05 0.17 -1 -1 0.26 0.0199886 0.0174729 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 10.00 vpr 62.79 MiB -1 -1 0.19 17892 1 0.03 -1 -1 30124 -1 -1 16 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 24.0 MiB 0.66 455 10956 4555 5743 658 62.8 MiB 0.08 0.00 2.9612 -88.8951 -2.9612 2.9612 0.68 0.000557468 0.000518656 0.0400597 0.0373011 42 2122 48 6.95648e+06 231611 744469. 2576.02 6.58 0.286888 0.245901 27202 183097 -1 1442 25 1194 1858 160235 42971 3.50502 3.50502 -109.827 -3.50502 0 0 949917. 3286.91 0.24 0.07 0.16 -1 -1 0.24 0.0265005 0.0229063 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.40 vpr 62.86 MiB -1 -1 0.22 17772 1 0.03 -1 -1 30284 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.1 MiB 0.45 491 8909 2535 4509 1865 62.9 MiB 0.07 0.00 3.37459 -106.336 -3.37459 3.37459 0.68 0.000565905 0.000527121 0.0344558 0.0321067 46 1610 43 6.95648e+06 144757 828058. 2865.25 2.07 0.14877 0.129371 28066 200906 -1 1141 21 1110 1592 118853 30138 2.98182 2.98182 -106.207 -2.98182 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0238834 0.0208271 58 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 7.94 vpr 62.75 MiB -1 -1 0.24 18076 1 0.03 -1 -1 30440 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 24.3 MiB 0.39 517 10050 3590 5083 1377 62.8 MiB 0.08 0.00 3.16008 -98.5956 -3.16008 3.16008 0.68 0.000583343 0.000541615 0.0350099 0.0324416 46 1828 33 6.95648e+06 275038 828058. 2865.25 4.62 0.240235 0.206473 28066 200906 -1 1325 20 1000 1423 100826 24947 2.88667 2.88667 -102.534 -2.88667 0 0 1.01997e+06 3529.29 0.26 0.06 0.18 -1 -1 0.26 0.0232453 0.0202201 61 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 7.79 vpr 62.93 MiB -1 -1 0.14 17872 1 0.03 -1 -1 30428 -1 -1 12 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 24.4 MiB 1.14 526 12233 5235 6327 671 62.9 MiB 0.10 0.00 2.76945 -94.9274 -2.76945 2.76945 0.68 0.000600035 0.000557295 0.0508569 0.0473413 46 1830 25 6.95648e+06 173708 828058. 2865.25 3.68 0.231754 0.200338 28066 200906 -1 1340 28 1257 1662 129919 31591 2.60472 2.60472 -98.1873 -2.60472 0 0 1.01997e+06 3529.29 0.30 0.08 0.20 -1 -1 0.30 0.0310046 0.0267781 61 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 7.57 vpr 63.62 MiB -1 -1 0.24 18340 1 0.03 -1 -1 30392 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 24.6 MiB 0.81 844 13477 4316 6348 2813 63.6 MiB 0.12 0.00 4.03548 -120.669 -4.03548 4.03548 0.69 0.000707531 0.000654318 0.0554105 0.0514807 46 2351 36 6.95648e+06 303989 828058. 2865.25 3.69 0.28583 0.247837 28066 200906 -1 1961 21 1464 2405 158336 35632 3.55741 3.55741 -119.762 -3.55741 0 0 1.01997e+06 3529.29 0.27 0.08 0.18 -1 -1 0.27 0.0312917 0.0275339 84 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.83 vpr 63.60 MiB -1 -1 0.20 18256 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 24.6 MiB 1.02 735 14323 5482 6766 2075 63.6 MiB 0.12 0.00 3.31218 -116.99 -3.31218 3.31218 0.67 0.000758952 0.000704593 0.0584552 0.0541098 40 2585 27 6.95648e+06 347416 706193. 2443.58 2.85 0.212916 0.185913 26914 176310 -1 2126 25 2009 2860 289316 68222 3.46607 3.46607 -130.304 -3.46607 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0370758 0.0323971 82 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 7.30 vpr 63.07 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30168 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 24.5 MiB 1.88 758 6739 2921 3632 186 63.1 MiB 0.06 0.00 3.81132 -121.219 -3.81132 3.81132 0.73 0.000533767 0.00049448 0.0276855 0.0257573 46 1839 22 6.95648e+06 159232 828058. 2865.25 2.26 0.143674 0.124518 28066 200906 -1 1596 21 1281 1828 170670 34985 3.07146 3.07146 -114.319 -3.07146 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0262719 0.0230108 63 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 15.40 vpr 63.48 MiB -1 -1 0.25 18348 1 0.03 -1 -1 30344 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 24.6 MiB 0.78 729 11233 3391 5862 1980 63.5 MiB 0.10 0.00 3.75886 -121.815 -3.75886 3.75886 0.68 0.000720383 0.000669546 0.0505666 0.0470276 38 2698 33 6.95648e+06 231611 678818. 2348.85 11.67 0.363905 0.313603 26626 170182 -1 1828 23 1676 2491 201615 44808 3.27527 3.27527 -123.878 -3.27527 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0321258 0.0279896 76 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 8.45 vpr 63.66 MiB -1 -1 0.25 18200 1 0.04 -1 -1 30332 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 24.8 MiB 2.28 959 13092 5556 7054 482 63.7 MiB 0.12 0.00 5.39406 -167.083 -5.39406 5.39406 0.69 0.000724175 0.00067193 0.0590623 0.0548662 48 3474 43 6.95648e+06 231611 865456. 2994.66 3.05 0.203473 0.178156 28354 207349 -1 2550 22 2362 3403 359700 76627 5.202 5.202 -178.576 -5.202 0 0 1.05005e+06 3633.38 0.27 0.12 0.18 -1 -1 0.27 0.0319154 0.0279568 97 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.98 vpr 63.56 MiB -1 -1 0.19 18192 1 0.03 -1 -1 30364 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 24.8 MiB 2.16 981 12754 4946 6110 1698 63.6 MiB 0.12 0.00 4.59684 -149.382 -4.59684 4.59684 0.68 0.000741252 0.000688897 0.0589457 0.0548265 36 3190 46 6.95648e+06 231611 648988. 2245.63 4.94 0.235837 0.206149 26050 158493 -1 2735 23 1939 2833 326579 63459 4.72741 4.72741 -168.365 -4.72741 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.033194 0.0289822 88 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.52 vpr 63.52 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30480 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 24.7 MiB 1.28 767 14407 6066 7718 623 63.5 MiB 0.12 0.00 4.14668 -131.95 -4.14668 4.14668 0.69 0.000694253 0.000644759 0.0564981 0.0524603 52 2459 42 6.95648e+06 318465 926341. 3205.33 5.17 0.29259 0.253278 29218 227130 -1 1811 19 1226 1800 153757 33931 4.09161 4.09161 -126.162 -4.09161 0 0 1.14541e+06 3963.36 0.29 0.07 0.20 -1 -1 0.29 0.0268157 0.0235022 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 8.09 vpr 63.05 MiB -1 -1 0.23 17848 1 0.03 -1 -1 30364 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 24.4 MiB 1.20 753 10868 4524 5937 407 63.0 MiB 0.09 0.00 4.07128 -116.522 -4.07128 4.07128 0.68 0.000607781 0.000563334 0.0423906 0.039342 44 2347 31 6.95648e+06 202660 787024. 2723.27 4.02 0.224627 0.194041 27778 195446 -1 1806 18 1164 1671 125166 29610 3.71072 3.71072 -118.558 -3.71072 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0231018 0.0202011 71 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.72 vpr 63.79 MiB -1 -1 0.21 18468 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 24.9 MiB 1.60 869 9725 2505 5543 1677 63.8 MiB 0.10 0.00 4.71507 -153.199 -4.71507 4.71507 0.65 0.000859818 0.000799262 0.0476998 0.0443551 58 2296 31 6.95648e+06 318465 997811. 3452.63 6.11 0.350676 0.301894 30370 251734 -1 1872 22 1850 2705 219163 49456 4.41931 4.41931 -149.17 -4.41931 0 0 1.25153e+06 4330.55 0.32 0.10 0.18 -1 -1 0.32 0.0372478 0.0325365 93 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.60 vpr 62.92 MiB -1 -1 0.18 17952 1 0.03 -1 -1 30140 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 24.2 MiB 0.77 547 8876 3348 4442 1086 62.9 MiB 0.07 0.00 3.29541 -98.5818 -3.29541 3.29541 0.61 0.00056416 0.00052438 0.0320822 0.0298313 34 2050 41 6.95648e+06 217135 618332. 2139.56 2.10 0.158307 0.136805 25762 151098 -1 1417 22 1099 1557 134706 29985 3.00097 3.00097 -107.528 -3.00097 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0245065 0.0212725 56 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.23 vpr 63.62 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30164 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 24.6 MiB 1.46 909 14520 6637 7462 421 63.6 MiB 0.13 0.00 4.79642 -150.982 -4.79642 4.79642 0.73 0.00068047 0.000632713 0.0626013 0.0582488 48 2603 25 6.95648e+06 217135 865456. 2994.66 2.68 0.201017 0.176612 28354 207349 -1 2096 23 1679 2408 259494 58538 4.24206 4.24206 -145.401 -4.24206 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.0305689 0.0266743 84 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 6.79 vpr 63.33 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30356 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 24.4 MiB 1.03 767 9181 3812 5049 320 63.3 MiB 0.08 0.00 3.22585 -111.884 -3.22585 3.22585 0.76 0.000688356 0.000638989 0.0387052 0.03594 48 2304 49 6.95648e+06 246087 865456. 2994.66 2.72 0.204205 0.176911 28354 207349 -1 1811 23 1518 2477 196205 44945 3.39087 3.39087 -116.832 -3.39087 0 0 1.05005e+06 3633.38 0.27 0.08 0.18 -1 -1 0.27 0.0307313 0.0267378 73 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 6.38 vpr 62.91 MiB -1 -1 0.23 17764 1 0.03 -1 -1 30100 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 1.03 689 10744 4411 5919 414 62.9 MiB 0.12 0.00 4.49648 -123.127 -4.49648 4.49648 0.68 0.000630819 0.000587094 0.0563449 0.0522677 44 2677 33 6.95648e+06 231611 787024. 2723.27 2.40 0.190466 0.166487 27778 195446 -1 1768 22 1306 2216 176830 39983 4.33596 4.33596 -132.934 -4.33596 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0279853 0.0244915 68 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.50 vpr 63.43 MiB -1 -1 0.17 18176 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 353 287 1 185 79 17 17 289 -1 unnamed_device 24.7 MiB 2.27 764 10219 4191 5614 414 63.4 MiB 0.09 0.00 4.42645 -137.171 -4.42645 4.42645 0.69 0.000697371 0.000647218 0.0447484 0.0415887 46 2232 27 6.95648e+06 217135 828058. 2865.25 2.32 0.187795 0.163553 28066 200906 -1 1690 21 1356 1843 119286 28759 3.38676 3.38676 -124.263 -3.38676 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.029082 0.0254594 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 8.92 vpr 63.30 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30240 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 361 291 1 178 81 17 17 289 -1 unnamed_device 24.4 MiB 1.73 705 10581 4329 5826 426 63.3 MiB 0.09 0.00 3.235 -113.751 -3.235 3.235 0.78 0.000698693 0.000647613 0.0457428 0.0425441 46 2538 36 6.95648e+06 246087 828058. 2865.25 3.91 0.210446 0.183679 28066 200906 -1 1762 22 1596 2486 209871 53513 3.04467 3.04467 -116.161 -3.04467 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0304047 0.0266453 75 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 5.94 vpr 63.58 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30384 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 24.5 MiB 0.97 869 14562 4589 7172 2801 63.6 MiB 0.12 0.00 4.34419 -139.535 -4.34419 4.34419 0.68 0.00073564 0.000682925 0.0561894 0.0521486 44 2582 33 6.95648e+06 376368 787024. 2723.27 1.94 0.185541 0.16252 27778 195446 -1 2081 22 1396 1997 161852 34833 3.73257 3.73257 -137.072 -3.73257 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0315996 0.027566 83 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.61 vpr 63.38 MiB -1 -1 0.23 17956 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 24.5 MiB 1.00 657 12749 3718 6154 2877 63.4 MiB 0.10 0.00 4.33949 -116.542 -4.33949 4.33949 0.70 0.00048975 0.000449322 0.0455099 0.0420791 46 2278 27 6.95648e+06 318465 828058. 2865.25 4.55 0.251385 0.217063 28066 200906 -1 1635 34 1343 2207 278677 118734 3.86876 3.86876 -120.58 -3.86876 0 0 1.01997e+06 3529.29 0.29 0.13 0.17 -1 -1 0.29 0.0393419 0.0340603 69 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 7.74 vpr 63.47 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30140 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 2.48 759 11487 3081 6173 2233 63.5 MiB 0.09 0.00 4.15778 -124.964 -4.15778 4.15778 0.71 0.00065762 0.000611028 0.048731 0.0453446 46 2227 42 6.95648e+06 188184 828058. 2865.25 2.21 0.191557 0.167205 28066 200906 -1 1421 20 1332 1783 116832 30386 4.29322 4.29322 -128.812 -4.29322 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0330323 0.0288603 80 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 7.36 vpr 63.42 MiB -1 -1 0.27 18336 1 0.03 -1 -1 30276 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 24.4 MiB 1.48 818 11200 4390 5140 1670 63.4 MiB 0.10 0.00 4.55157 -142.077 -4.55157 4.55157 0.69 0.000695454 0.000643369 0.0513895 0.0477522 50 2910 30 6.95648e+06 217135 902133. 3121.57 2.80 0.193904 0.170225 28642 213929 -1 2279 22 1850 2937 242481 54030 4.72121 4.72121 -154.712 -4.72121 0 0 1.08113e+06 3740.92 0.27 0.09 0.13 -1 -1 0.27 0.0314285 0.0274085 85 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 15.80 vpr 63.53 MiB -1 -1 0.23 18284 1 0.03 -1 -1 30220 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 387 315 1 183 77 17 17 289 -1 unnamed_device 24.6 MiB 1.37 875 12791 5461 6994 336 63.5 MiB 0.12 0.00 4.05245 -131.841 -4.05245 4.05245 0.68 0.000645169 0.000591785 0.0604784 0.0561338 44 2763 27 6.95648e+06 188184 787024. 2723.27 11.35 0.328623 0.284311 27778 195446 -1 2246 25 1752 2922 239542 49233 4.05862 4.05862 -140.456 -4.05862 0 0 997811. 3452.63 0.31 0.10 0.17 -1 -1 0.31 0.0336025 0.0296529 76 77 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.42 vpr 62.69 MiB -1 -1 0.21 18080 1 0.03 -1 -1 30340 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 24.0 MiB 0.32 503 11474 3656 5616 2202 62.7 MiB 0.08 0.00 3.14908 -92.8603 -3.14908 3.14908 0.67 0.000562268 0.000522048 0.0382502 0.0355564 52 1419 23 6.95648e+06 260562 926341. 3205.33 4.16 0.244345 0.210091 29218 227130 -1 1087 18 771 1179 89864 21770 2.74227 2.74227 -91.7392 -2.74227 0 0 1.14541e+06 3963.36 0.29 0.05 0.19 -1 -1 0.29 0.020529 0.0179319 57 23 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 6.55 vpr 63.55 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30140 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 24.6 MiB 1.45 711 11916 4904 6407 605 63.6 MiB 0.11 0.00 3.71155 -132.668 -3.71155 3.71155 0.68 0.000677394 0.000628877 0.0526694 0.0489626 44 2425 26 6.95648e+06 173708 787024. 2723.27 1.99 0.161356 0.141676 27778 195446 -1 1674 18 1420 1991 153166 33659 3.57462 3.57462 -129.856 -3.57462 0 0 997811. 3452.63 0.36 0.07 0.19 -1 -1 0.36 0.0251631 0.0220712 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 7.70 vpr 63.53 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30416 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 24.7 MiB 1.37 1043 13668 5813 7551 304 63.5 MiB 0.14 0.00 4.86362 -154.705 -4.86362 4.86362 0.68 0.000763893 0.000709243 0.0639566 0.0594541 46 3365 22 6.95648e+06 231611 828058. 2865.25 3.17 0.217161 0.190493 28066 200906 -1 2399 21 2087 3130 238764 50403 4.78086 4.78086 -155.649 -4.78086 0 0 1.01997e+06 3529.29 0.30 0.09 0.17 -1 -1 0.30 0.0321914 0.0282615 95 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.64 vpr 63.34 MiB -1 -1 0.23 18196 1 0.04 -1 -1 30468 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 24.4 MiB 0.90 1030 10056 3475 5590 991 63.3 MiB 0.09 0.00 4.33951 -148.581 -4.33951 4.33951 0.68 0.000688839 0.000641034 0.0421815 0.0392677 38 2405 21 6.95648e+06 246087 678818. 2348.85 3.75 0.259661 0.224174 26626 170182 -1 2053 21 1440 1910 152876 31166 3.53206 3.53206 -140.961 -3.53206 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0286017 0.0249733 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.90 vpr 62.82 MiB -1 -1 0.23 17876 1 0.03 -1 -1 30384 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 24.2 MiB 0.50 522 12008 3926 6070 2012 62.8 MiB 0.09 0.00 2.944 -97.1669 -2.944 2.944 0.72 0.000606949 0.000557998 0.0419219 0.0388865 38 2191 45 6.95648e+06 289514 678818. 2348.85 3.53 0.181808 0.157597 26626 170182 -1 1384 24 1137 1760 144452 32557 3.32657 3.32657 -105.304 -3.32657 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0280517 0.0243164 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 8.84 vpr 63.94 MiB -1 -1 0.23 18496 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.82 1133 14782 6411 8010 361 63.9 MiB 0.15 0.00 5.84939 -174.319 -5.84939 5.84939 0.68 0.000825426 0.000767188 0.0757387 0.0704338 46 3210 43 6.95648e+06 217135 828058. 2865.25 3.86 0.275563 0.24144 28066 200906 -1 2620 22 2234 3260 380021 79679 4.9092 4.9092 -168.046 -4.9092 0 0 1.01997e+06 3529.29 0.26 0.12 0.17 -1 -1 0.26 0.0358947 0.0313779 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.62 vpr 63.45 MiB -1 -1 0.24 18208 1 0.03 -1 -1 30416 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 24.5 MiB 1.24 677 13335 4957 6249 2129 63.4 MiB 0.11 0.00 4.62011 -128.464 -4.62011 4.62011 0.68 0.000685733 0.00063646 0.0504529 0.0467585 46 2127 39 6.95648e+06 332941 828058. 2865.25 2.46 0.201961 0.175929 28066 200906 -1 1601 21 1287 1925 131804 31581 3.66536 3.66536 -124.644 -3.66536 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0282011 0.0246314 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 7.55 vpr 62.76 MiB -1 -1 0.21 17720 1 0.03 -1 -1 30452 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.2 MiB 0.34 533 10509 4364 5792 353 62.8 MiB 0.08 0.00 2.922 -92.1888 -2.922 2.922 0.68 0.000533724 0.000496399 0.0363479 0.0338504 44 1860 43 6.95648e+06 188184 787024. 2723.27 4.33 0.24555 0.211193 27778 195446 -1 1322 21 1032 1559 125074 32023 3.01497 3.01497 -97.1456 -3.01497 0 0 997811. 3452.63 0.28 0.06 0.17 -1 -1 0.28 0.0221256 0.0192615 51 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.92 vpr 63.50 MiB -1 -1 0.23 18196 1 0.03 -1 -1 30200 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 24.5 MiB 0.62 923 15298 6192 8434 672 63.5 MiB 0.13 0.00 4.94787 -132.081 -4.94787 4.94787 0.68 0.000711067 0.000660986 0.0585109 0.0544062 42 2728 49 6.95648e+06 347416 744469. 2576.02 4.33 0.301605 0.261307 27202 183097 -1 2153 22 1630 2908 277830 54875 4.62111 4.62111 -136.41 -4.62111 0 0 949917. 3286.91 0.24 0.10 0.16 -1 -1 0.24 0.030306 0.0264519 80 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 6.39 vpr 62.81 MiB -1 -1 0.22 17736 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 247 207 1 143 78 17 17 289 -1 unnamed_device 24.1 MiB 1.04 478 10702 3424 4721 2557 62.8 MiB 0.08 0.00 2.9972 -98.3507 -2.9972 2.9972 0.68 0.00055344 0.000514404 0.0377102 0.0351001 40 1891 46 6.95648e+06 202660 706193. 2443.58 2.40 0.167201 0.144884 26914 176310 -1 1393 20 1216 1705 175293 44848 3.12312 3.12312 -112.128 -3.12312 0 0 926341. 3205.33 0.24 0.07 0.19 -1 -1 0.24 0.022538 0.0196478 57 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 6.56 vpr 63.03 MiB -1 -1 0.24 17860 1 0.03 -1 -1 30376 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 24.4 MiB 0.92 563 7684 3076 4271 337 63.0 MiB 0.07 0.00 3.70539 -107.459 -3.70539 3.70539 0.68 0.000575373 0.000533285 0.0289123 0.0269217 38 2065 26 6.95648e+06 246087 678818. 2348.85 2.81 0.150664 0.130487 26626 170182 -1 1388 19 962 1443 98972 22533 2.95562 2.95562 -101.553 -2.95562 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0227366 0.0198635 60 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.98 vpr 63.44 MiB -1 -1 0.26 18212 1 0.03 -1 -1 30328 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 24.7 MiB 1.58 772 11161 4679 5848 634 63.4 MiB 0.10 0.00 3.81182 -119.076 -3.81182 3.81182 0.70 0.000699718 0.000650081 0.0500853 0.0465143 50 2356 40 6.95648e+06 231611 902133. 3121.57 4.34 0.271561 0.234747 28642 213929 -1 1910 21 1595 2363 178428 39346 3.20926 3.20926 -116.621 -3.20926 0 0 1.08113e+06 3740.92 0.27 0.08 0.18 -1 -1 0.27 0.0290424 0.0253553 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 12.74 vpr 63.47 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 32 32 358 289 1 174 80 17 17 289 -1 unnamed_device 24.6 MiB 1.22 730 14528 6360 7668 500 63.5 MiB 0.13 0.00 4.50448 -132.805 -4.50448 4.50448 0.69 0.000702296 0.000652348 0.0624618 0.0580817 40 2494 23 6.95648e+06 231611 706193. 2443.58 8.44 0.349267 0.302252 26914 176310 -1 2053 23 1679 2442 220311 49164 4.37836 4.37836 -149.477 -4.37836 0 0 926341. 3205.33 0.23 0.09 0.17 -1 -1 0.23 0.031375 0.0273127 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.73 vpr 63.33 MiB -1 -1 0.20 18208 1 0.04 -1 -1 30260 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 24.6 MiB 1.71 893 12196 5165 6793 238 63.3 MiB 0.11 0.00 4.54489 -142.964 -4.54489 4.54489 0.68 0.0007032 0.000653624 0.0541735 0.0503452 44 2682 22 6.95648e+06 202660 787024. 2723.27 4.08 0.281913 0.244065 27778 195446 -1 2055 24 1428 2293 201073 39813 4.04006 4.04006 -140.568 -4.04006 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0324638 0.0282848 73 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 8.67 vpr 62.93 MiB -1 -1 0.22 17992 1 0.03 -1 -1 30148 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 24.4 MiB 2.63 776 12009 5242 6488 279 62.9 MiB 0.10 0.00 4.04528 -129.976 -4.04528 4.04528 0.70 0.000589906 0.000549075 0.0479176 0.0446197 46 1885 49 6.95648e+06 144757 828058. 2865.25 3.04 0.189524 0.165041 28066 200906 -1 1641 19 1151 1512 250515 72629 3.36462 3.36462 -120.941 -3.36462 0 0 1.01997e+06 3529.29 0.26 0.09 0.18 -1 -1 0.26 0.0232456 0.0203546 61 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.65 vpr 62.91 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30332 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 24.3 MiB 1.97 663 10661 4446 5843 372 62.9 MiB 0.09 0.00 3.79972 -122.501 -3.79972 3.79972 0.68 0.000638037 0.000592985 0.0451422 0.041939 42 2372 44 6.95648e+06 173708 744469. 2576.02 3.79 0.290297 0.249254 27202 183097 -1 1654 24 1345 1967 153429 34253 3.68766 3.68766 -126.73 -3.68766 0 0 949917. 3286.91 0.25 0.08 0.16 -1 -1 0.25 0.0292398 0.0254124 68 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.43 vpr 63.37 MiB -1 -1 0.23 18224 1 0.03 -1 -1 30380 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 24.4 MiB 0.80 674 10881 3783 5148 1950 63.4 MiB 0.09 0.00 3.0162 -94.5584 -3.0162 3.0162 0.68 0.000648259 0.00060093 0.042165 0.0392011 36 2708 33 6.95648e+06 318465 648988. 2245.63 4.59 0.189028 0.16436 26050 158493 -1 1913 21 1228 1904 165436 37389 3.36877 3.36877 -109.961 -3.36877 0 0 828058. 2865.25 0.23 0.07 0.14 -1 -1 0.23 0.0272131 0.0237012 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.59 vpr 63.00 MiB -1 -1 0.20 17976 1 0.03 -1 -1 30396 -1 -1 28 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 24.4 MiB 0.59 778 10813 2608 7403 802 63.0 MiB 0.08 0.00 3.60279 -102.16 -3.60279 3.60279 0.68 0.000591683 0.000549984 0.0345325 0.0321039 38 2172 19 6.95648e+06 405319 678818. 2348.85 2.21 0.148784 0.129298 26626 170182 -1 1840 21 1172 1938 158200 32086 3.80596 3.80596 -114.363 -3.80596 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0243274 0.0211024 72 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.37 vpr 62.95 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30372 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 24.3 MiB 0.82 563 10459 4351 5596 512 62.9 MiB 0.09 0.00 3.44073 -108.445 -3.44073 3.44073 0.68 0.000635018 0.000589708 0.045625 0.0424644 62 1390 22 6.95648e+06 173708 1.05005e+06 3633.38 4.47 0.24978 0.215555 30946 263737 -1 1138 18 989 1332 92509 22287 3.01972 3.01972 -104.668 -3.01972 0 0 1.30136e+06 4502.97 0.33 0.06 0.23 -1 -1 0.33 0.0234995 0.0205235 61 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 19.19 vpr 63.34 MiB -1 -1 0.24 18128 1 0.03 -1 -1 30100 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 24.4 MiB 1.59 640 12873 4842 6240 1791 63.3 MiB 0.11 0.00 3.39649 -120.54 -3.39649 3.39649 0.67 0.000658951 0.000611858 0.0562258 0.0522752 48 2228 47 6.95648e+06 159232 865456. 2994.66 14.55 0.353927 0.305277 28354 207349 -1 1834 27 1641 2354 245542 62313 3.31916 3.31916 -126.417 -3.31916 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.0330708 0.0287378 72 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 6.01 vpr 63.02 MiB -1 -1 0.24 17648 1 0.03 -1 -1 30388 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.4 MiB 0.59 710 11799 3748 5667 2384 63.0 MiB 0.09 0.00 4.65108 -122.985 -4.65108 4.65108 0.68 0.000629034 0.000583751 0.0414765 0.0385699 48 2306 45 6.95648e+06 347416 865456. 2994.66 2.41 0.171674 0.149595 28354 207349 -1 1724 21 1126 1892 189388 42832 3.77166 3.77166 -124.085 -3.77166 0 0 1.05005e+06 3633.38 0.27 0.08 0.18 -1 -1 0.27 0.0262533 0.0228924 74 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 9.17 vpr 63.46 MiB -1 -1 0.23 18236 1 0.04 -1 -1 30576 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 350 275 1 195 77 17 17 289 -1 unnamed_device 24.7 MiB 1.71 839 11813 4506 5923 1384 63.5 MiB 0.11 0.00 4.59692 -149.244 -4.59692 4.59692 0.70 0.000700748 0.000650477 0.0535037 0.0497227 46 2984 27 6.95648e+06 188184 828058. 2865.25 4.38 0.258974 0.224932 28066 200906 -1 2127 22 1674 2480 206654 44561 4.19442 4.19442 -148.109 -4.19442 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0306293 0.0268005 81 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 7.42 vpr 63.43 MiB -1 -1 0.23 18104 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 24.5 MiB 1.43 818 16468 6086 8049 2333 63.4 MiB 0.14 0.00 4.31183 -134.888 -4.31183 4.31183 0.69 0.000704564 0.000650335 0.0654235 0.0606991 46 2433 50 6.95648e+06 347416 828058. 2865.25 2.87 0.247659 0.216558 28066 200906 -1 2036 24 1655 2611 275869 56257 4.20256 4.20256 -147.124 -4.20256 0 0 1.01997e+06 3529.29 0.30 0.10 0.17 -1 -1 0.30 0.0341299 0.029743 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.12 vpr 63.54 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 24.6 MiB 1.22 810 13911 4952 7625 1334 63.5 MiB 0.13 0.00 4.06852 -133.682 -4.06852 4.06852 0.69 0.00074621 0.000692812 0.0567956 0.0527171 44 2810 38 6.95648e+06 332941 787024. 2723.27 2.79 0.223078 0.194615 27778 195446 -1 2088 22 1704 2782 216494 48753 4.03326 4.03326 -142.694 -4.03326 0 0 997811. 3452.63 0.27 0.09 0.17 -1 -1 0.27 0.0321244 0.0280493 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.97 vpr 62.85 MiB -1 -1 0.16 18092 1 0.03 -1 -1 30156 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 24.4 MiB 0.86 540 8134 2607 3837 1690 62.9 MiB 0.07 0.00 3.76076 -106.203 -3.76076 3.76076 0.71 0.000580205 0.000539864 0.0324602 0.0302201 40 1743 21 6.95648e+06 173708 706193. 2443.58 2.28 0.143793 0.124884 26914 176310 -1 1450 19 1055 1623 139417 31075 3.09482 3.09482 -107.953 -3.09482 0 0 926341. 3205.33 0.24 0.06 0.16 -1 -1 0.24 0.0225152 0.0196539 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.61 vpr 63.36 MiB -1 -1 0.17 18156 1 0.03 -1 -1 30388 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 24.4 MiB 0.92 678 9356 3868 5007 481 63.4 MiB 0.09 0.00 4.36203 -133.981 -4.36203 4.36203 0.68 0.000719514 0.000667402 0.0448017 0.0416211 62 1674 24 6.95648e+06 202660 1.05005e+06 3633.38 4.66 0.281682 0.24302 30946 263737 -1 1253 22 1370 1875 125210 27799 3.78282 3.78282 -122.799 -3.78282 0 0 1.30136e+06 4502.97 0.32 0.07 0.24 -1 -1 0.32 0.0312563 0.0272702 76 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 9.06 vpr 63.53 MiB -1 -1 0.23 18240 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 24.7 MiB 1.53 842 12030 5028 6552 450 63.5 MiB 0.11 0.00 4.9029 -146.03 -4.9029 4.9029 0.68 0.000685603 0.00063708 0.0522936 0.048623 48 2359 34 6.95648e+06 202660 865456. 2994.66 4.56 0.273323 0.236884 28354 207349 -1 1906 21 1574 2568 243804 52280 4.23991 4.23991 -138.98 -4.23991 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0320948 0.0279218 80 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.75 vpr 63.57 MiB -1 -1 0.25 18272 1 0.03 -1 -1 30092 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 24.5 MiB 1.34 802 12302 5209 6575 518 63.6 MiB 0.11 0.00 5.49296 -152.69 -5.49296 5.49296 0.69 0.000681137 0.000632458 0.0543852 0.0506068 48 2186 22 6.95648e+06 202660 865456. 2994.66 4.27 0.252646 0.219271 28354 207349 -1 1898 22 1362 2105 193050 41590 4.37756 4.37756 -146.531 -4.37756 0 0 1.05005e+06 3633.38 0.33 0.08 0.21 -1 -1 0.33 0.0297138 0.0259258 79 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.37 vpr 63.46 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30128 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 24.4 MiB 2.39 747 11063 3637 5035 2391 63.5 MiB 0.12 0.00 4.87546 -148.536 -4.87546 4.87546 0.68 0.00071881 0.000667464 0.0573986 0.0532788 44 2266 39 6.95648e+06 303989 787024. 2723.27 1.94 0.189959 0.166421 27778 195446 -1 1772 19 1100 1701 126629 28534 3.94446 3.94446 -138.289 -3.94446 0 0 997811. 3452.63 0.27 0.07 0.18 -1 -1 0.27 0.0273935 0.0239706 74 83 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 9.26 vpr 63.37 MiB -1 -1 0.19 18372 1 0.03 -1 -1 30460 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 24.5 MiB 1.15 690 9368 3411 4136 1821 63.4 MiB 0.09 0.00 4.44043 -136.028 -4.44043 4.44043 0.68 0.000566063 0.000519094 0.0431496 0.040023 56 2045 26 6.95648e+06 188184 973134. 3367.25 5.09 0.278891 0.241128 29794 239141 -1 1709 20 1368 2297 179555 41735 3.86892 3.86892 -135.287 -3.86892 0 0 1.19926e+06 4149.71 0.31 0.08 0.21 -1 -1 0.31 0.0292942 0.0256825 72 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 8.32 vpr 63.50 MiB -1 -1 0.25 18132 1 0.03 -1 -1 30288 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 24.6 MiB 1.13 661 10346 4002 4565 1779 63.5 MiB 0.09 0.00 4.05037 -124.329 -4.05037 4.05037 0.70 0.000712692 0.000661868 0.0478509 0.044449 48 2271 31 6.95648e+06 231611 865456. 2994.66 4.17 0.275179 0.237987 28354 207349 -1 1696 19 1340 1945 154438 38128 3.70772 3.70772 -126.489 -3.70772 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.027641 0.0241592 73 85 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 10.72 vpr 62.78 MiB -1 -1 0.20 17804 1 0.03 -1 -1 30496 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 243 205 1 141 74 17 17 289 -1 unnamed_device 24.1 MiB 1.02 586 9374 3879 5247 248 62.8 MiB 0.07 0.00 3.56099 -107.065 -3.56099 3.56099 0.68 0.00048264 0.000442804 0.0351397 0.032686 38 1998 44 6.95648e+06 144757 678818. 2348.85 6.81 0.26917 0.231185 26626 170182 -1 1504 25 1108 1632 253138 97143 2.88007 2.88007 -106.685 -2.88007 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0268971 0.0233792 54 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.19 vpr 63.50 MiB -1 -1 0.14 18176 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 24.8 MiB 2.90 802 15255 5017 7734 2504 63.5 MiB 0.13 0.00 4.6485 -130.063 -4.6485 4.6485 0.69 0.000725051 0.000673634 0.0584385 0.0540539 46 2292 23 6.95648e+06 332941 828058. 2865.25 2.22 0.172393 0.151182 28066 200906 -1 1852 23 1154 1783 158840 34469 4.34076 4.34076 -136.882 -4.34076 0 0 1.01997e+06 3529.29 0.27 0.08 0.20 -1 -1 0.27 0.0339501 0.0297621 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.91 vpr 63.46 MiB -1 -1 0.23 18288 1 0.03 -1 -1 30276 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 24.5 MiB 0.78 783 8716 3564 4899 253 63.5 MiB 0.09 0.00 4.28453 -142.302 -4.28453 4.28453 0.67 0.000759988 0.000705303 0.0432112 0.0401106 46 2521 34 6.95648e+06 188184 828058. 2865.25 3.95 0.2852 0.245608 28066 200906 -1 1789 23 1572 2303 149693 35251 3.96002 3.96002 -145.842 -3.96002 0 0 1.01997e+06 3529.29 0.38 0.10 0.20 -1 -1 0.38 0.0403389 0.035383 78 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.15 vpr 62.90 MiB -1 -1 0.21 17944 1 0.03 -1 -1 30324 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 24.4 MiB 1.80 634 12083 4617 6209 1257 62.9 MiB 0.10 0.00 4.05037 -119.139 -4.05037 4.05037 0.69 0.000573138 0.000531998 0.0460304 0.04278 46 1888 24 6.95648e+06 159232 828058. 2865.25 3.39 0.218015 0.188607 28066 200906 -1 1468 19 1111 1421 112010 25385 3.45712 3.45712 -117.244 -3.45712 0 0 1.01997e+06 3529.29 0.26 0.06 0.21 -1 -1 0.26 0.0230093 0.0201451 68 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.61 vpr 62.70 MiB -1 -1 0.22 17688 1 0.03 -1 -1 30392 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 31 32 245 205 1 145 77 17 17 289 -1 unnamed_device 24.0 MiB 1.17 487 10835 3461 5636 1738 62.7 MiB 0.08 0.00 3.36359 -100.982 -3.36359 3.36359 0.68 0.000548185 0.000510105 0.0384382 0.0357975 42 1814 42 6.95648e+06 202660 744469. 2576.02 3.58 0.220275 0.189773 27202 183097 -1 1150 22 1212 1698 116371 29217 3.04892 3.04892 -101.08 -3.04892 0 0 949917. 3286.91 0.24 0.06 0.16 -1 -1 0.24 0.0238554 0.0207427 58 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.15 vpr 63.52 MiB -1 -1 0.15 18216 1 0.03 -1 -1 30608 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 24.7 MiB 1.69 752 12754 5308 6926 520 63.5 MiB 0.12 0.00 4.57592 -147.598 -4.57592 4.57592 0.67 0.000693316 0.000643126 0.0554606 0.0515359 48 2718 40 6.95648e+06 217135 865456. 2994.66 5.32 0.322656 0.278849 28354 207349 -1 2198 22 2028 2655 254879 61421 4.72641 4.72641 -159.267 -4.72641 0 0 1.05005e+06 3633.38 0.40 0.09 0.21 -1 -1 0.40 0.0276398 0.0245966 85 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 6.67 vpr 63.55 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30440 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 24.8 MiB 1.00 797 12030 5060 6593 377 63.5 MiB 0.11 0.00 4.81473 -147.296 -4.81473 4.81473 0.68 0.000700983 0.000650835 0.0533486 0.0494821 46 2524 35 6.95648e+06 202660 828058. 2865.25 2.70 0.203249 0.177146 28066 200906 -1 1867 21 1482 2163 173801 40068 4.08896 4.08896 -142.959 -4.08896 0 0 1.01997e+06 3529.29 0.27 0.08 0.18 -1 -1 0.27 0.0292944 0.0256481 82 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.41 vpr 63.52 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.6 MiB 0.49 857 12156 5040 6495 621 63.5 MiB 0.11 0.00 4.94172 -141.808 -4.94172 4.94172 0.68 0.000715975 0.000664731 0.0524999 0.0487967 50 2424 42 6.95648e+06 246087 902133. 3121.57 4.90 0.292006 0.253236 28642 213929 -1 2023 24 1791 3022 240716 56098 4.5268 4.5268 -146.532 -4.5268 0 0 1.08113e+06 3740.92 0.27 0.10 0.18 -1 -1 0.27 0.0336065 0.0294072 83 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.64 vpr 63.38 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30372 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 24.5 MiB 0.79 694 11963 3988 5372 2603 63.4 MiB 0.10 0.00 3.42648 -99.7352 -3.42648 3.42648 0.67 0.000637402 0.000591171 0.0446457 0.0414971 36 2505 35 6.95648e+06 303989 648988. 2245.63 4.01 0.185994 0.161594 26050 158493 -1 1728 20 1405 2173 173282 37294 3.22627 3.22627 -109.804 -3.22627 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0258311 0.0225409 69 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 7.07 vpr 62.85 MiB -1 -1 0.21 17900 1 0.03 -1 -1 30424 -1 -1 16 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 27 32 255 219 1 129 75 17 17 289 -1 unnamed_device 24.2 MiB 0.57 461 8291 2789 4081 1421 62.8 MiB 0.06 0.00 2.92795 -88.1908 -2.92795 2.92795 0.68 0.000545598 0.000507528 0.0302709 0.0281608 34 1607 36 6.95648e+06 231611 618332. 2139.56 3.71 0.228103 0.194727 25762 151098 -1 1212 22 1022 1273 97777 24574 2.94272 2.94272 -98.3554 -2.94272 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0298883 0.0256876 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 26.16 vpr 63.74 MiB -1 -1 0.22 18516 1 0.04 -1 -1 30288 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 24.8 MiB 1.39 1102 15044 5934 6987 2123 63.7 MiB 0.15 0.00 3.84665 -133.243 -3.84665 3.84665 0.67 0.000801247 0.000744244 0.0731819 0.0679753 44 3912 38 6.95648e+06 231611 787024. 2723.27 21.65 0.428735 0.371357 27778 195446 -1 2650 23 2329 3777 336798 83820 3.95332 3.95332 -144.857 -3.95332 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.036026 0.0314147 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.55 vpr 63.51 MiB -1 -1 0.22 18312 1 0.03 -1 -1 30416 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 365 296 1 191 78 17 17 289 -1 unnamed_device 24.6 MiB 4.28 1054 12362 3699 7370 1293 63.5 MiB 0.12 0.00 5.54356 -160.149 -5.54356 5.54356 0.68 0.000707646 0.000657464 0.0555299 0.051603 44 2839 44 6.95648e+06 217135 787024. 2723.27 2.29 0.191907 0.168027 27778 195446 -1 2311 22 1567 2448 215016 41644 4.67901 4.67901 -159.933 -4.67901 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0305869 0.0267138 82 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 8.18 vpr 63.32 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30384 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 24.4 MiB 3.25 712 8923 3677 5027 219 63.3 MiB 0.08 0.00 3.7738 -128.135 -3.7738 3.7738 0.68 0.000656605 0.000609727 0.0397243 0.036942 38 2693 37 6.95648e+06 159232 678818. 2348.85 1.98 0.162281 0.141455 26626 170182 -1 1927 21 1453 2080 221772 61542 3.74976 3.74976 -140.556 -3.74976 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0273833 0.0238855 70 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 16.44 vpr 63.33 MiB -1 -1 0.24 18376 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 24.4 MiB 0.41 938 14261 5382 6939 1940 63.3 MiB 0.13 0.00 4.23483 -126.342 -4.23483 4.23483 0.68 0.000675978 0.000626261 0.0564809 0.0522893 38 2645 48 6.95648e+06 318465 678818. 2348.85 13.02 0.364307 0.31454 26626 170182 -1 2110 20 1311 2028 170396 34366 3.92976 3.92976 -129.96 -3.92976 0 0 902133. 3121.57 0.24 0.08 0.16 -1 -1 0.24 0.0271057 0.023732 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 5.92 vpr 63.67 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30488 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 0.90 924 11398 3933 5445 2020 63.7 MiB 0.10 0.00 4.47977 -130.348 -4.47977 4.47977 0.69 0.000734992 0.000680706 0.0452362 0.041981 36 2622 49 6.95648e+06 361892 648988. 2245.63 2.07 0.187988 0.164072 26050 158493 -1 2091 22 1634 2481 166714 37915 3.79382 3.79382 -133.71 -3.79382 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.031357 0.0273628 83 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 8.34 vpr 63.27 MiB -1 -1 0.24 18232 1 0.03 -1 -1 30380 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 24.4 MiB 0.98 716 8544 3177 4311 1056 63.3 MiB 0.08 0.00 3.31107 -101.686 -3.31107 3.31107 0.68 0.000647176 0.000601367 0.0357803 0.0332991 38 2777 45 6.95648e+06 231611 678818. 2348.85 4.49 0.19209 0.166187 26626 170182 -1 2061 19 1369 2231 197407 43010 3.37172 3.37172 -114.229 -3.37172 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0252426 0.0220748 68 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 23.51 vpr 63.54 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 24.7 MiB 1.54 916 13856 5155 6510 2191 63.5 MiB 0.12 0.00 4.51937 -148.282 -4.51937 4.51937 0.68 0.000665504 0.000614794 0.0604364 0.0561482 44 3814 50 6.95648e+06 202660 787024. 2723.27 18.91 0.372005 0.321591 27778 195446 -1 2420 21 1984 2868 287175 60934 4.43742 4.43742 -152.778 -4.43742 0 0 997811. 3452.63 0.28 0.11 0.17 -1 -1 0.28 0.0335901 0.0295535 88 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 5.88 vpr 63.40 MiB -1 -1 0.18 18420 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 24.7 MiB 0.92 854 9338 3754 5311 273 63.4 MiB 0.09 0.00 4.47033 -147.36 -4.47033 4.47033 0.69 0.000745552 0.000692145 0.0416502 0.0386972 40 2444 23 6.95648e+06 260562 706193. 2443.58 1.94 0.188328 0.163679 26914 176310 -1 2114 23 1571 2109 197933 41957 4.12762 4.12762 -144.507 -4.12762 0 0 926341. 3205.33 0.32 0.09 0.18 -1 -1 0.32 0.0301528 0.0265693 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 11.40 vpr 62.85 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30252 -1 -1 12 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 24.3 MiB 4.20 468 9953 3826 4648 1479 62.8 MiB 0.08 0.00 4.00493 -101.525 -4.00493 4.00493 0.74 0.000591609 0.000533739 0.0396382 0.0369055 36 1656 25 6.95648e+06 173708 648988. 2245.63 4.26 0.226846 0.195622 26050 158493 -1 1227 27 1176 1581 127931 31156 3.12203 3.12203 -104.772 -3.12203 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0293586 0.0253909 53 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 7.98 vpr 63.28 MiB -1 -1 0.15 18268 1 0.03 -1 -1 30344 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 24.4 MiB 1.22 608 10187 3178 5307 1702 63.3 MiB 0.09 0.00 3.51519 -119.059 -3.51519 3.51519 0.68 0.000630757 0.000585992 0.042447 0.0394304 42 2230 44 6.95648e+06 159232 744469. 2576.02 3.88 0.258356 0.222719 27202 183097 -1 1461 18 1170 1458 120460 28525 3.41506 3.41506 -120.781 -3.41506 0 0 949917. 3286.91 0.25 0.06 0.18 -1 -1 0.25 0.0233698 0.0204254 64 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 8.54 vpr 63.36 MiB -1 -1 0.16 18228 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 24.3 MiB 0.89 748 11615 3856 5496 2263 63.4 MiB 0.10 0.00 4.10411 -120.963 -4.10411 4.10411 0.69 0.00066778 0.000620309 0.0439936 0.0408811 44 2469 26 6.95648e+06 332941 787024. 2723.27 4.66 0.278701 0.240595 27778 195446 -1 1799 26 1480 2331 212814 48275 3.97526 3.97526 -129.99 -3.97526 0 0 997811. 3452.63 0.36 0.09 0.17 -1 -1 0.36 0.0326357 0.0283722 77 33 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.88 vpr 62.93 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30308 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 24.4 MiB 1.75 593 9994 4212 5312 470 62.9 MiB 0.08 0.00 4.05727 -116.106 -4.05727 4.05727 0.68 0.000563999 0.000525059 0.0383632 0.0357296 40 2251 36 6.95648e+06 188184 706193. 2443.58 2.26 0.163052 0.141518 26914 176310 -1 1831 21 1318 1668 158768 36497 3.82202 3.82202 -121.162 -3.82202 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0242212 0.0211139 67 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.06 vpr 62.84 MiB -1 -1 0.21 17932 1 0.03 -1 -1 30204 -1 -1 9 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 24.2 MiB 1.25 609 9497 4084 5186 227 62.8 MiB 0.08 0.00 3.96096 -113.861 -3.96096 3.96096 0.68 0.000593176 0.000551432 0.0391459 0.0364425 44 1872 43 6.95648e+06 130281 787024. 2723.27 1.94 0.167166 0.145158 27778 195446 -1 1412 21 1258 1911 149762 32431 2.93842 2.93842 -110.555 -2.93842 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.02478 0.0216028 56 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 5.56 vpr 63.45 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30476 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64976 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 24.5 MiB 1.02 760 14295 5473 6487 2335 63.5 MiB 0.12 0.00 3.48773 -117.233 -3.48773 3.48773 0.69 0.000725417 0.000674131 0.0571161 0.0530857 38 2353 27 6.95648e+06 347416 678818. 2348.85 1.61 0.18785 0.164526 26626 170182 -1 1741 20 1636 2188 161214 36056 3.39887 3.39887 -120.309 -3.39887 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.029089 0.0254622 79 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.88 vpr 62.83 MiB -1 -1 0.23 17884 1 0.03 -1 -1 30464 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 24.3 MiB 2.24 638 11925 5003 6558 364 62.8 MiB 0.10 0.00 3.74472 -112.927 -3.74472 3.74472 0.67 0.000576221 0.000535909 0.04515 0.0420228 38 2139 45 6.95648e+06 173708 678818. 2348.85 2.79 0.178446 0.155442 26626 170182 -1 1635 23 1259 1790 163948 37471 3.13146 3.13146 -111.948 -3.13146 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.025693 0.0223128 64 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.52 vpr 63.46 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 24.5 MiB 1.37 684 15017 5927 7080 2010 63.5 MiB 0.11 0.00 3.20268 -108.628 -3.20268 3.20268 0.69 0.000691938 0.000641237 0.048263 0.0444098 50 1963 50 6.95648e+06 318465 902133. 3121.57 2.15 0.187117 0.162781 28642 213929 -1 1695 22 1320 2119 185443 42813 2.83647 2.83647 -109.921 -2.83647 0 0 1.08113e+06 3740.92 0.28 0.08 0.18 -1 -1 0.28 0.0300341 0.0262141 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 15.22 vpr 63.48 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30308 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 24.5 MiB 1.75 793 8876 3629 4933 314 63.5 MiB 0.09 0.00 3.995 -134.834 -3.995 3.995 0.69 0.000809287 0.000725534 0.0426269 0.0395154 38 2580 38 6.95648e+06 217135 678818. 2348.85 10.53 0.352477 0.303083 26626 170182 -1 1938 20 1471 1968 167821 34556 3.58422 3.58422 -139.229 -3.58422 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0319824 0.0278557 73 91 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.06 vpr 63.07 MiB -1 -1 0.21 18108 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 24.5 MiB 1.22 529 10304 4263 5737 304 63.1 MiB 0.09 0.00 2.9023 -97.7367 -2.9023 2.9023 0.68 0.000616115 0.000572059 0.0430039 0.0399508 46 1735 22 6.95648e+06 144757 828058. 2865.25 1.95 0.165988 0.144532 28066 200906 -1 1310 20 1149 1778 124339 30875 2.91172 2.91172 -102.967 -2.91172 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0245533 0.0213586 57 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 8.09 vpr 63.02 MiB -1 -1 0.21 17996 1 0.03 -1 -1 30212 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 24.4 MiB 1.42 759 10819 2915 6394 1510 63.0 MiB 0.10 0.00 4.04348 -128.875 -4.04348 4.04348 0.68 0.000618229 0.00057469 0.0438171 0.0407937 44 2276 48 6.95648e+06 159232 787024. 2723.27 3.79 0.247707 0.213903 27778 195446 -1 1861 20 1289 1885 182177 37686 3.73872 3.73872 -131.392 -3.73872 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0248827 0.0217402 70 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.13 vpr 63.34 MiB -1 -1 0.19 18444 1 0.03 -1 -1 30196 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 24.4 MiB 1.30 714 10370 4100 5259 1011 63.3 MiB 0.09 0.00 4.19403 -126.395 -4.19403 4.19403 0.67 0.000656995 0.000610953 0.0434992 0.0404789 50 2180 23 6.95648e+06 202660 902133. 3121.57 3.87 0.272286 0.234821 28642 213929 -1 1786 21 1591 2167 173769 41974 4.23792 4.23792 -132.209 -4.23792 0 0 1.08113e+06 3740.92 0.27 0.08 0.19 -1 -1 0.27 0.0277248 0.0242576 79 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.15 vpr 63.11 MiB -1 -1 0.16 18336 1 0.03 -1 -1 30232 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 24.5 MiB 1.07 662 11118 4280 5305 1533 63.1 MiB 0.09 0.00 4.24388 -117.238 -4.24388 4.24388 0.69 0.00065258 0.000606486 0.0431933 0.0402023 46 2122 28 6.95648e+06 303989 828058. 2865.25 4.20 0.269663 0.232008 28066 200906 -1 1448 23 1164 1690 119756 28843 3.68766 3.68766 -111.969 -3.68766 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0289341 0.025164 71 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.26 vpr 63.73 MiB -1 -1 0.25 18140 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 24.9 MiB 1.39 793 12030 5031 6445 554 63.7 MiB 0.11 0.00 4.95915 -156.293 -4.95915 4.95915 0.68 0.000752906 0.000699056 0.0518231 0.0478155 54 2485 43 6.95648e+06 202660 949917. 3286.91 4.64 0.323805 0.279305 29506 232905 -1 1950 36 2625 3709 532287 182783 4.44822 4.44822 -154.247 -4.44822 0 0 1.17392e+06 4061.99 0.29 0.19 0.20 -1 -1 0.29 0.0494347 0.042959 89 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.38 vpr 62.59 MiB -1 -1 0.22 17764 1 0.03 -1 -1 30096 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.0 MiB 2.19 535 10476 4313 5711 452 62.6 MiB 0.08 0.00 3.50918 -93.5706 -3.50918 3.50918 0.68 0.000528618 0.000492172 0.036606 0.0341126 38 1790 27 6.95648e+06 188184 678818. 2348.85 1.37 0.121997 0.1067 26626 170182 -1 1375 22 1021 1643 115576 25319 3.13712 3.13712 -104.072 -3.13712 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0269759 0.0233925 54 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.51 vpr 63.52 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 24.8 MiB 1.08 808 15533 3949 11126 458 63.5 MiB 0.14 0.00 3.75239 -135.532 -3.75239 3.75239 0.69 0.000770879 0.000714094 0.0632521 0.0586609 38 2695 48 6.95648e+06 361892 678818. 2348.85 4.40 0.253192 0.221022 26626 170182 -1 2028 23 1857 2478 205439 43685 3.99306 3.99306 -149.548 -3.99306 0 0 902133. 3121.57 0.28 0.08 0.15 -1 -1 0.28 0.0299646 0.026461 81 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.51 vpr 63.23 MiB -1 -1 0.25 18128 1 0.03 -1 -1 30140 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.54 581 11544 4905 6301 338 63.2 MiB 0.11 0.00 2.99685 -114.691 -2.99685 2.99685 0.68 0.000711409 0.000660425 0.0558083 0.0518415 40 2161 45 6.95648e+06 144757 706193. 2443.58 4.02 0.330268 0.284388 26914 176310 -1 1891 22 1683 2320 245662 55959 3.54322 3.54322 -139.792 -3.54322 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0303273 0.0263813 61 96 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.79 vpr 63.62 MiB -1 -1 0.20 18136 1 0.03 -1 -1 30280 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 24.7 MiB 1.21 727 10670 3941 5494 1235 63.6 MiB 0.10 0.00 4.11943 -125.455 -4.11943 4.11943 0.68 0.000707346 0.000656813 0.0429046 0.0398939 46 2249 26 6.95648e+06 318465 828058. 2865.25 3.61 0.245909 0.212303 28066 200906 -1 1805 21 1115 1739 127394 30050 3.50106 3.50106 -121.691 -3.50106 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0294046 0.0256711 75 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 6.79 vpr 63.88 MiB -1 -1 0.20 18192 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.69 1022 12247 3468 7038 1741 63.9 MiB 0.13 0.00 6.03007 -174.097 -6.03007 6.03007 0.70 0.000776578 0.000720812 0.0602916 0.055999 48 2938 26 6.95648e+06 217135 865456. 2994.66 2.00 0.190823 0.167848 28354 207349 -1 2458 22 2142 3106 309004 63595 4.95685 4.95685 -169.055 -4.95685 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0338821 0.029692 95 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.70 vpr 62.74 MiB -1 -1 0.22 18044 1 0.02 -1 -1 30176 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 30 32 224 207 1 131 73 17 17 289 -1 unnamed_device 24.2 MiB 2.06 529 10865 3546 5596 1723 62.7 MiB 0.08 0.00 2.69765 -94.3472 -2.69765 2.69765 0.68 0.000501424 0.000467135 0.037594 0.0350413 34 1837 48 6.95648e+06 159232 618332. 2139.56 1.87 0.147435 0.12805 25762 151098 -1 1352 19 863 1089 119179 24854 2.36662 2.36662 -94.7935 -2.36662 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0193559 0.0168561 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 10.61 vpr 63.01 MiB -1 -1 0.23 17968 1 0.03 -1 -1 30460 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 30 32 286 239 1 137 73 17 17 289 -1 unnamed_device 24.5 MiB 1.77 541 7673 3127 4256 290 63.0 MiB 0.07 0.00 3.61654 -109.463 -3.61654 3.61654 0.68 0.000596938 0.00055511 0.0322437 0.0300152 36 1999 40 6.95648e+06 159232 648988. 2245.63 5.99 0.25191 0.215787 26050 158493 -1 1573 27 1433 2096 285043 86529 3.15927 3.15927 -115.804 -3.15927 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0323562 0.0282217 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 6.69 vpr 62.89 MiB -1 -1 0.20 17920 1 0.03 -1 -1 30160 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 24.4 MiB 0.38 540 6894 2748 3891 255 62.9 MiB 0.06 0.00 3.28706 -107.534 -3.28706 3.28706 0.67 0.000615352 0.000572046 0.0294774 0.0274304 48 1927 37 6.95648e+06 144757 865456. 2994.66 3.41 0.167173 0.144451 28354 207349 -1 1516 32 1414 2301 357477 110572 3.36277 3.36277 -117.521 -3.36277 0 0 1.05005e+06 3633.38 0.27 0.13 0.18 -1 -1 0.27 0.0359208 0.0310162 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.48 vpr 62.61 MiB -1 -1 0.24 18056 1 0.03 -1 -1 30140 -1 -1 18 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 24.0 MiB 0.45 429 8607 3204 4152 1251 62.6 MiB 0.06 0.00 3.25923 -75.9549 -3.25923 3.25923 0.67 0.000471674 0.000438944 0.0273212 0.0253976 38 1447 26 6.95648e+06 260562 678818. 2348.85 3.22 0.168869 0.14515 26626 170182 -1 1136 22 909 1447 102359 23567 2.91262 2.91262 -83.008 -2.91262 0 0 902133. 3121.57 0.23 0.05 0.14 -1 -1 0.23 0.0206039 0.0178652 53 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 15.37 vpr 63.59 MiB -1 -1 0.26 18292 1 0.03 -1 -1 30384 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 376 307 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 2.06 770 10636 4042 5174 1420 63.6 MiB 0.10 0.00 4.01326 -127.68 -4.01326 4.01326 0.68 0.000720075 0.000668408 0.0506933 0.047101 44 2789 32 6.95648e+06 173708 787024. 2723.27 10.33 0.313808 0.270681 27778 195446 -1 1975 23 1682 2784 223500 47848 4.07572 4.07572 -136.131 -4.07572 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0323408 0.0281956 72 72 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 7.42 vpr 63.52 MiB -1 -1 0.26 18136 1 0.03 -1 -1 30288 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 24.5 MiB 1.04 746 9540 3860 5304 376 63.5 MiB 0.09 0.00 4.09438 -138.115 -4.09438 4.09438 0.70 0.000764414 0.000709562 0.0449095 0.0416968 38 2658 29 6.95648e+06 246087 678818. 2348.85 3.36 0.209519 0.182325 26626 170182 -1 1960 20 1624 2159 180927 39751 3.71392 3.71392 -137.191 -3.71392 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0306974 0.0268329 80 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 8.30 vpr 63.61 MiB -1 -1 0.25 18100 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 24.6 MiB 1.68 851 13599 5123 6301 2175 63.6 MiB 0.12 0.00 5.05471 -146.645 -5.05471 5.05471 0.68 0.000708559 0.000658712 0.0591872 0.0550004 40 2973 50 6.99608e+06 220735 706193. 2443.58 3.65 0.236087 0.20602 26914 176310 -1 2391 21 1860 2633 243329 56741 4.97901 4.97901 -158.616 -4.97901 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0293826 0.0256582 88 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.16 vpr 63.34 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30316 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 30 32 363 293 1 224 80 17 17 289 -1 unnamed_device 24.3 MiB 0.89 900 10744 3918 5217 1609 63.3 MiB 0.10 0.00 4.91636 -147.436 -4.91636 4.91636 0.68 0.00070586 0.000655321 0.0465828 0.0432681 46 2747 23 6.99608e+06 264882 828058. 2865.25 2.26 0.185814 0.161803 28066 200906 -1 2084 23 2150 3223 242281 52439 4.53109 4.53109 -146.905 -4.53109 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0315369 0.0275057 101 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 7.86 vpr 62.84 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 24.3 MiB 0.81 763 12030 3995 5720 2315 62.8 MiB 0.10 0.00 3.55089 -109.995 -3.55089 3.55089 0.80 0.00062597 0.00058197 0.0479003 0.0445358 44 2462 46 6.99608e+06 206020 787024. 2723.27 4.02 0.248834 0.214858 27778 195446 -1 1773 23 1312 1775 138732 30275 3.49336 3.49336 -113.946 -3.49336 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0277031 0.0240845 76 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 5.88 vpr 62.92 MiB -1 -1 0.18 18256 1 0.03 -1 -1 30256 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 29 32 308 248 1 182 77 17 17 289 -1 unnamed_device 24.3 MiB 0.98 725 10998 3857 5366 1775 62.9 MiB 0.09 0.00 4.23493 -118.016 -4.23493 4.23493 0.68 0.000632513 0.000587889 0.0449638 0.0418083 44 2522 28 6.99608e+06 235451 787024. 2723.27 2.02 0.151947 0.133145 27778 195446 -1 1857 24 1459 2384 167378 38752 3.95812 3.95812 -125.643 -3.95812 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0291449 0.0253372 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.15 vpr 63.32 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30400 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 336 268 1 193 78 17 17 289 -1 unnamed_device 24.4 MiB 2.82 864 10536 4352 5849 335 63.3 MiB 0.10 0.00 4.46745 -139.506 -4.46745 4.46745 0.72 0.000685913 0.000636325 0.0455526 0.0423186 44 3120 46 6.99608e+06 206020 787024. 2723.27 5.33 0.299625 0.258698 27778 195446 -1 2219 21 1490 2510 218025 47308 4.36971 4.36971 -150.636 -4.36971 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0283417 0.0247472 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 11.91 vpr 63.52 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 24.4 MiB 3.43 959 11981 4937 6553 491 63.5 MiB 0.11 0.00 3.38926 -120.16 -3.38926 3.38926 0.67 0.000708891 0.000657102 0.051428 0.0476881 60 2244 24 6.99608e+06 250167 1.01997e+06 3529.29 5.30 0.299101 0.258421 30658 258169 -1 1762 21 1410 2064 123116 29745 3.25596 3.25596 -115.922 -3.25596 0 0 1.27783e+06 4421.56 0.33 0.07 0.24 -1 -1 0.33 0.0298554 0.026117 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.49 vpr 62.68 MiB -1 -1 0.18 17896 1 0.03 -1 -1 30588 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 24.0 MiB 0.81 493 10924 4387 5255 1282 62.7 MiB 0.08 0.00 3.74847 -105.464 -3.74847 3.74847 0.68 0.000552856 0.000515081 0.041063 0.0382139 44 1722 34 6.99608e+06 220735 787024. 2723.27 1.88 0.163426 0.141957 27778 195446 -1 1171 21 1171 1713 134252 32052 3.02191 3.02191 -101.224 -3.02191 0 0 997811. 3452.63 0.26 0.06 0.13 -1 -1 0.26 0.0231677 0.0200941 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 13.08 vpr 62.75 MiB -1 -1 0.22 17736 1 0.03 -1 -1 30076 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.0 MiB 0.35 646 12568 4471 6001 2096 62.7 MiB 0.09 0.00 2.86205 -89.6785 -2.86205 2.86205 0.70 0.000596601 0.000553439 0.0404695 0.0376206 40 2046 44 6.99608e+06 367892 706193. 2443.58 9.90 0.301415 0.259343 26914 176310 -1 1679 21 1162 1930 167655 41587 3.23737 3.23737 -103.037 -3.23737 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0243749 0.021143 69 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 5.52 vpr 63.03 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30284 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 24.3 MiB 0.86 971 11487 3139 6320 2028 63.0 MiB 0.10 0.00 3.37244 -119.224 -3.37244 3.37244 0.68 0.000629846 0.000585743 0.0471929 0.0439202 38 2510 23 6.99608e+06 206020 678818. 2348.85 1.79 0.174452 0.152271 26626 170182 -1 2071 18 1660 2239 168297 35771 3.50741 3.50741 -126.791 -3.50741 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.023563 0.0205951 87 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.84 vpr 62.80 MiB -1 -1 0.21 17860 1 0.03 -1 -1 30184 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 24.2 MiB 0.85 721 12465 5225 6975 265 62.8 MiB 0.10 0.00 3.92192 -133.493 -3.92192 3.92192 0.68 0.000623083 0.000579312 0.0497209 0.0462627 38 2622 30 6.99608e+06 191304 678818. 2348.85 2.15 0.177739 0.155328 26626 170182 -1 1885 19 1498 1863 167052 35482 3.33856 3.33856 -127.368 -3.33856 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0241382 0.021098 75 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 12.33 vpr 63.18 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30536 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 24.3 MiB 1.80 754 13516 5712 6664 1140 63.2 MiB 0.11 0.00 3.97461 -128.358 -3.97461 3.97461 0.67 0.000622409 0.000576903 0.0535596 0.0497265 38 2495 37 6.99608e+06 206020 678818. 2348.85 7.61 0.290368 0.250669 26626 170182 -1 1877 19 1440 1936 144531 31810 4.1193 4.1193 -132.916 -4.1193 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0237811 0.0207679 83 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.08 vpr 62.69 MiB -1 -1 0.22 18040 1 0.02 -1 -1 30244 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 24.2 MiB 0.65 849 10977 2887 7437 653 62.7 MiB 0.09 0.00 3.07868 -112.05 -3.07868 3.07868 0.68 0.000590888 0.000550152 0.043241 0.0402983 40 2073 21 6.99608e+06 161872 706193. 2443.58 3.50 0.212153 0.183337 26914 176310 -1 1903 21 1177 1516 143718 29819 2.98387 2.98387 -120.376 -2.98387 0 0 926341. 3205.33 0.26 0.07 0.17 -1 -1 0.26 0.0244678 0.0212788 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.54 vpr 63.32 MiB -1 -1 0.24 18348 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 24.3 MiB 0.79 843 12585 5259 6846 480 63.3 MiB 0.11 0.00 3.78992 -128.054 -3.78992 3.78992 0.68 0.000698463 0.000649154 0.0541061 0.0502953 46 2868 30 6.99608e+06 220735 828058. 2865.25 4.74 0.279126 0.241659 28066 200906 -1 2083 23 1994 2972 236374 51689 3.48381 3.48381 -130.891 -3.48381 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0310551 0.0270907 87 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 5.96 vpr 63.34 MiB -1 -1 0.25 18152 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 24.3 MiB 0.79 1008 11981 3623 6079 2279 63.3 MiB 0.11 0.00 4.68712 -142.46 -4.68712 4.68712 0.68 0.000704449 0.000654191 0.0512014 0.0475528 54 2354 26 6.99608e+06 250167 949917. 3286.91 2.08 0.194053 0.169473 29506 232905 -1 1818 25 2094 2851 202373 47066 4.17491 4.17491 -142.251 -4.17491 0 0 1.17392e+06 4061.99 0.29 0.09 0.22 -1 -1 0.29 0.0339712 0.0295427 97 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 12.01 vpr 62.53 MiB -1 -1 0.22 18148 1 0.03 -1 -1 30188 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 29 32 248 215 1 154 74 17 17 289 -1 unnamed_device 23.9 MiB 3.45 611 8754 3597 4747 410 62.5 MiB 0.07 0.00 3.0585 -88.5437 -3.0585 3.0585 0.74 0.000542289 0.000504608 0.0328337 0.0305834 38 1880 28 6.99608e+06 191304 678818. 2348.85 5.70 0.231168 0.198232 26626 170182 -1 1427 26 1171 1648 178027 64766 2.89347 2.89347 -95.7987 -2.89347 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0268205 0.0232084 63 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.98 vpr 63.39 MiB -1 -1 0.21 18148 1 0.03 -1 -1 30396 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 24.4 MiB 1.40 1140 12464 4408 6591 1465 63.4 MiB 0.12 0.00 3.78769 -130.542 -3.78769 3.78769 0.68 0.000718875 0.000666763 0.054901 0.0509731 42 3336 48 6.99608e+06 235451 744469. 2576.02 4.59 0.311533 0.269201 27202 183097 -1 2553 23 2137 3282 294346 60400 3.53451 3.53451 -137.204 -3.53451 0 0 949917. 3286.91 0.24 0.10 0.16 -1 -1 0.24 0.03217 0.0280825 96 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 5.79 vpr 63.20 MiB -1 -1 0.13 18236 1 0.03 -1 -1 30080 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 24.3 MiB 0.72 918 13768 4694 7034 2040 63.2 MiB 0.12 0.00 4.0525 -128.935 -4.0525 4.0525 0.68 0.000691676 0.000643159 0.0583607 0.0543006 38 2783 48 6.99608e+06 220735 678818. 2348.85 2.23 0.190833 0.167457 26626 170182 -1 2142 23 1730 2375 236394 51694 3.25321 3.25321 -123.43 -3.25321 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0315588 0.0276291 84 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 8.07 vpr 63.22 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30228 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 24.3 MiB 0.77 903 11064 3444 5931 1689 63.2 MiB 0.10 0.00 3.21889 -121.244 -3.21889 3.21889 0.69 0.000645739 0.000599563 0.0446835 0.041548 44 2749 36 6.99608e+06 220735 787024. 2723.27 4.36 0.245294 0.212054 27778 195446 -1 2055 22 1814 2261 190479 41538 3.07012 3.07012 -121.754 -3.07012 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0278241 0.0242211 89 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.52 vpr 62.38 MiB -1 -1 0.17 18188 1 0.03 -1 -1 30280 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 222 206 1 133 72 17 17 289 -1 unnamed_device 23.9 MiB 1.48 489 10949 4586 6034 329 62.4 MiB 0.08 0.00 2.30246 -84.2954 -2.30246 2.30246 0.69 0.000496861 0.000462021 0.0385301 0.0358684 36 1686 45 6.99608e+06 147157 648988. 2245.63 3.32 0.190432 0.164295 26050 158493 -1 1183 16 756 833 72235 17268 2.42913 2.42913 -91.9913 -2.42913 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0167415 0.0146298 53 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 11.09 vpr 62.72 MiB -1 -1 0.21 17960 1 0.03 -1 -1 30556 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 24.1 MiB 3.02 914 8396 2822 4710 864 62.7 MiB 0.09 0.00 4.11252 -133.321 -4.11252 4.11252 0.73 0.000613327 0.000570216 0.0378787 0.0351104 36 2304 25 6.99608e+06 191304 648988. 2245.63 5.08 0.233722 0.201318 26050 158493 -1 2051 24 1606 2280 285081 73882 3.73061 3.73061 -141.603 -3.73061 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0279508 0.0242473 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.75 vpr 63.24 MiB -1 -1 0.19 18364 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 24.3 MiB 1.09 753 13260 4777 6497 1986 63.2 MiB 0.12 0.00 3.96428 -130.083 -3.96428 3.96428 0.68 0.000810026 0.000747345 0.0561233 0.0519578 46 2675 50 6.99608e+06 294314 828058. 2865.25 4.71 0.304444 0.263312 28066 200906 -1 1829 21 1870 2722 202521 48522 3.86415 3.86415 -137.674 -3.86415 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0280878 0.024654 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 8.36 vpr 63.64 MiB -1 -1 0.17 18272 1 0.03 -1 -1 30284 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 24.9 MiB 1.47 1213 11432 3690 6927 815 63.6 MiB 0.11 0.00 4.63424 -146.103 -4.63424 4.63424 0.68 0.000722445 0.000671419 0.0507366 0.0471573 44 3169 22 6.99608e+06 235451 787024. 2723.27 3.95 0.266643 0.230595 27778 195446 -1 2575 19 1666 2486 201192 40418 3.84232 3.84232 -140.174 -3.84232 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0279447 0.0244555 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.13 vpr 62.25 MiB -1 -1 0.10 17952 1 0.02 -1 -1 30548 -1 -1 13 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 26 32 190 182 1 122 71 17 17 289 -1 unnamed_device 23.7 MiB 0.73 398 7809 3208 4118 483 62.3 MiB 0.05 0.00 2.6826 -76.1752 -2.6826 2.6826 0.68 0.000426669 0.000395708 0.0242135 0.0225137 38 1303 33 6.99608e+06 191304 678818. 2348.85 1.76 0.115774 0.100076 26626 170182 -1 963 20 721 809 72420 16775 2.30307 2.30307 -73.7861 -2.30307 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0172081 0.0149655 52 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.95 vpr 62.75 MiB -1 -1 0.22 17764 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 24.0 MiB 0.87 705 12078 4998 6546 534 62.7 MiB 0.10 0.00 4.4821 -114.357 -4.4821 4.4821 0.68 0.000612878 0.000569545 0.046022 0.0427892 38 2698 27 6.99608e+06 220735 678818. 2348.85 4.17 0.178496 0.155754 26626 170182 -1 1954 23 1419 2416 197936 43766 3.78296 3.78296 -121.838 -3.78296 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0277355 0.0241346 66 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.26 vpr 62.20 MiB -1 -1 0.19 17384 1 0.03 -1 -1 29952 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63692 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.5 MiB 0.22 437 9906 4129 5591 186 62.2 MiB 0.06 0.00 2.05011 -68.4317 -2.05011 2.05011 0.68 0.000422912 0.000392752 0.0294598 0.0273625 36 1207 35 6.99608e+06 117725 648988. 2245.63 1.35 0.113215 0.0984966 26050 158493 -1 911 19 566 682 56435 12806 2.02348 2.02348 -70.7598 -2.02348 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0163919 0.0142994 42 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.30 vpr 62.76 MiB -1 -1 0.24 17896 1 0.03 -1 -1 30144 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 24.2 MiB 0.92 787 11034 4537 6125 372 62.8 MiB 0.10 0.00 4.53486 -122.805 -4.53486 4.53486 0.68 0.000633007 0.000588573 0.0444814 0.0413798 38 2644 43 6.99608e+06 206020 678818. 2348.85 3.46 0.187567 0.162934 26626 170182 -1 1864 29 1489 2059 268194 93673 4.13361 4.13361 -127.157 -4.13361 0 0 902133. 3121.57 0.23 0.11 0.15 -1 -1 0.23 0.0338474 0.0293608 73 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.62 vpr 63.03 MiB -1 -1 0.19 17756 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.5 MiB 0.50 752 10873 3818 5551 1504 63.0 MiB 0.11 0.00 2.96725 -98.6672 -2.96725 2.96725 0.68 0.000634665 0.0005904 0.0478045 0.0444445 38 2710 37 6.99608e+06 309029 678818. 2348.85 3.24 0.189772 0.165405 26626 170182 -1 1920 21 1417 2326 158600 36999 3.12812 3.12812 -112.923 -3.12812 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0261261 0.0228111 74 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 7.68 vpr 63.16 MiB -1 -1 0.22 18164 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 24.2 MiB 1.07 867 7853 3139 4431 283 63.2 MiB 0.08 0.00 4.12347 -127.886 -4.12347 4.12347 0.72 0.000532242 0.00048631 0.0337816 0.0312944 46 2738 41 6.99608e+06 220735 828058. 2865.25 3.63 0.192674 0.166984 28066 200906 -1 2181 22 1719 2587 190254 43419 3.85501 3.85501 -128.799 -3.85501 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0290882 0.025326 87 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.93 vpr 62.89 MiB -1 -1 0.21 18000 1 0.02 -1 -1 30060 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 24.3 MiB 2.22 674 9356 2870 4551 1935 62.9 MiB 0.08 0.00 3.13575 -106.667 -3.13575 3.13575 0.69 0.000603667 0.000561981 0.0374729 0.0348761 40 2217 49 6.99608e+06 176588 706193. 2443.58 3.85 0.255502 0.219666 26914 176310 -1 1797 20 1266 1757 166502 36883 3.25457 3.25457 -122.85 -3.25457 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0241186 0.0210075 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 8.22 vpr 62.69 MiB -1 -1 0.22 18116 1 0.03 -1 -1 30292 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 24.0 MiB 1.27 589 9996 4089 5442 465 62.7 MiB 0.08 0.00 3.74777 -109.42 -3.74777 3.74777 0.68 0.000565684 0.000525655 0.0373051 0.0347224 48 1951 22 6.99608e+06 206020 865456. 2994.66 4.02 0.204522 0.176384 28354 207349 -1 1463 20 1190 1805 156689 38956 3.24581 3.24581 -110.842 -3.24581 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0225715 0.0196352 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 9.52 vpr 62.79 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30068 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 24.2 MiB 2.64 566 10702 3839 4998 1865 62.8 MiB 0.08 0.00 3.27594 -101.475 -3.27594 3.27594 0.67 0.000558107 0.000518343 0.0379818 0.0353336 42 2228 35 6.99608e+06 264882 744469. 2576.02 3.96 0.239772 0.205746 27202 183097 -1 1502 22 1294 2101 157785 36966 3.36181 3.36181 -108.095 -3.36181 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.0241068 0.0209217 70 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.08 vpr 62.65 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.0 MiB 0.40 510 11079 3828 5373 1878 62.7 MiB 0.09 0.00 3.37459 -106.177 -3.37459 3.37459 0.68 0.000565827 0.000526454 0.042625 0.0397107 44 1632 21 6.99608e+06 147157 787024. 2723.27 3.81 0.211861 0.183311 27778 195446 -1 1255 23 1278 1977 120442 31904 3.03062 3.03062 -110.115 -3.03062 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0251787 0.0218552 58 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.90 vpr 62.68 MiB -1 -1 0.24 17872 1 0.03 -1 -1 30468 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 23.9 MiB 0.99 892 8396 1989 5699 708 62.7 MiB 0.07 0.00 3.27018 -109.388 -3.27018 3.27018 0.68 0.000581304 0.000540744 0.032038 0.0298391 36 2529 37 6.99608e+06 191304 648988. 2245.63 8.09 0.250181 0.214663 26050 158493 -1 1957 21 1260 1716 145686 30648 3.10592 3.10592 -115.413 -3.10592 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0242272 0.0210917 69 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.34 vpr 62.89 MiB -1 -1 0.25 18084 1 0.03 -1 -1 30344 -1 -1 15 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 24.2 MiB 1.95 893 11756 3359 7323 1074 62.9 MiB 0.10 0.00 2.90695 -103.76 -2.90695 2.90695 0.68 0.000593611 0.000552602 0.0459979 0.0428254 36 2442 43 6.99608e+06 220735 648988. 2245.63 3.54 0.187169 0.163144 26050 158493 -1 1954 18 1256 1690 139426 28896 3.05912 3.05912 -113.612 -3.05912 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0210485 0.0184402 77 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.58 vpr 63.45 MiB -1 -1 0.20 18224 1 0.03 -1 -1 30496 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 24.4 MiB 1.04 941 11432 4088 5131 2213 63.4 MiB 0.10 0.00 4.40712 -125.714 -4.40712 4.40712 0.69 0.000738163 0.000685762 0.0515522 0.047914 54 2574 21 6.99608e+06 235451 949917. 3286.91 4.57 0.284028 0.245943 29506 232905 -1 1986 18 1380 2261 147872 35051 3.58842 3.58842 -121.497 -3.58842 0 0 1.17392e+06 4061.99 0.31 0.07 0.22 -1 -1 0.31 0.0283662 0.0250659 92 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.06 vpr 63.56 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30356 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 391 311 1 244 82 17 17 289 -1 unnamed_device 24.7 MiB 0.81 1003 12186 4031 5776 2379 63.6 MiB 0.12 0.00 4.3859 -150.052 -4.3859 4.3859 0.68 0.000762386 0.000707906 0.0559035 0.0519869 44 3661 45 6.99608e+06 264882 787024. 2723.27 3.20 0.23513 0.205117 27778 195446 -1 2288 24 2353 3309 249990 56885 4.0015 4.0015 -149.159 -4.0015 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0348263 0.0303706 106 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.88 vpr 62.73 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30080 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 24.0 MiB 1.12 879 8134 2173 5187 774 62.7 MiB 0.07 0.00 3.62727 -120.528 -3.62727 3.62727 0.69 0.000594896 0.000553184 0.0328955 0.0306322 36 2423 45 6.99608e+06 161872 648988. 2245.63 1.96 0.144642 0.125723 26050 158493 -1 1996 20 1328 1931 181557 35817 3.48246 3.48246 -125.103 -3.48246 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0236361 0.0205862 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 9.12 vpr 63.68 MiB -1 -1 0.21 18232 1 0.03 -1 -1 30488 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 31 32 370 297 1 227 80 17 17 289 -1 unnamed_device 24.7 MiB 0.88 902 12292 4688 5816 1788 63.7 MiB 0.11 0.00 3.65599 -121.612 -3.65599 3.65599 0.67 0.000727121 0.000675209 0.0569105 0.0527786 50 2759 34 6.99608e+06 250167 902133. 3121.57 5.23 0.304515 0.263576 28642 213929 -1 2077 19 1659 2252 180057 42667 3.51907 3.51907 -125.738 -3.51907 0 0 1.08113e+06 3740.92 0.28 0.08 0.22 -1 -1 0.28 0.02785 0.024403 101 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.38 vpr 63.48 MiB -1 -1 0.25 18132 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 24.6 MiB 0.98 1028 12636 4939 6150 1547 63.5 MiB 0.12 0.00 5.24621 -161.935 -5.24621 5.24621 0.67 0.000724436 0.000673102 0.0565533 0.0525867 48 3303 37 6.99608e+06 250167 865456. 2994.66 3.31 0.218581 0.190662 28354 207349 -1 2354 33 2920 4225 465806 138121 5.3112 5.3112 -170.393 -5.3112 0 0 1.05005e+06 3633.38 0.27 0.16 0.18 -1 -1 0.27 0.0432746 0.037431 104 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 10.08 vpr 63.38 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30508 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 24.5 MiB 3.57 968 11981 4242 5473 2266 63.4 MiB 0.12 0.00 5.22958 -165.475 -5.22958 5.22958 0.67 0.000735471 0.000683189 0.0530022 0.0492437 38 4038 49 6.99608e+06 264882 678818. 2348.85 3.51 0.205989 0.180022 26626 170182 -1 2704 22 2314 3311 303781 63787 5.01455 5.01455 -170.12 -5.01455 0 0 902133. 3121.57 0.23 0.14 0.15 -1 -1 0.23 0.0393263 0.0346761 103 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.20 vpr 63.49 MiB -1 -1 0.26 18248 1 0.03 -1 -1 30392 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 24.7 MiB 1.97 882 12585 5245 6747 593 63.5 MiB 0.11 0.00 3.91372 -127.244 -3.91372 3.91372 0.67 0.000689469 0.000638139 0.0542311 0.0503753 46 3220 49 6.99608e+06 235451 828058. 2865.25 2.25 0.195535 0.170889 28066 200906 -1 2148 20 1690 2211 184808 39735 3.41986 3.41986 -124.041 -3.41986 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0280043 0.024484 93 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 6.20 vpr 62.77 MiB -1 -1 0.15 17952 1 0.03 -1 -1 30500 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 291 242 1 177 78 17 17 289 -1 unnamed_device 24.2 MiB 1.11 853 9872 3567 4389 1916 62.8 MiB 0.09 0.00 4.1407 -116.233 -4.1407 4.1407 0.68 0.000622525 0.000579241 0.0390158 0.0363222 40 2523 26 6.99608e+06 206020 706193. 2443.58 2.26 0.16527 0.143684 26914 176310 -1 2086 20 1342 1862 174928 36049 3.96232 3.96232 -123.593 -3.96232 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0247406 0.0215883 72 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.67 vpr 63.89 MiB -1 -1 0.27 18484 1 0.03 -1 -1 30524 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 24.9 MiB 1.39 1445 14965 4188 8952 1825 63.9 MiB 0.16 0.00 4.92896 -170.692 -4.92896 4.92896 0.70 0.000872834 0.000812089 0.0731754 0.0680412 40 3661 40 6.99608e+06 309029 706193. 2443.58 4.12 0.275788 0.24138 26914 176310 -1 3385 20 2610 3812 343398 69832 4.77544 4.77544 -177.469 -4.77544 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0353872 0.0310039 129 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.69 vpr 62.64 MiB -1 -1 0.22 18068 1 0.03 -1 -1 30292 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 261 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 2.95 542 11234 3813 5447 1974 62.6 MiB 0.09 0.00 2.9921 -96.3096 -2.9921 2.9921 0.68 0.000561478 0.000522534 0.0428001 0.039845 44 2071 32 6.99608e+06 161872 787024. 2723.27 3.86 0.247706 0.21305 27778 195446 -1 1288 20 1197 1546 103827 25958 3.08197 3.08197 -102.762 -3.08197 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0232778 0.0203583 65 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.24 vpr 63.28 MiB -1 -1 0.26 18424 1 0.03 -1 -1 30140 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 24.3 MiB 0.80 912 12694 5540 6748 406 63.3 MiB 0.11 0.00 4.60267 -146.673 -4.60267 4.60267 0.72 0.000687599 0.000639951 0.0551183 0.0512899 48 2598 24 6.99608e+06 220735 865456. 2994.66 2.31 0.192008 0.168087 28354 207349 -1 2041 22 1747 2529 208572 44467 4.26401 4.26401 -140.32 -4.26401 0 0 1.05005e+06 3633.38 0.30 0.09 0.18 -1 -1 0.30 0.029553 0.0258106 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 7.72 vpr 63.29 MiB -1 -1 0.22 18252 1 0.03 -1 -1 30312 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 24.3 MiB 1.34 945 13430 5690 7168 572 63.3 MiB 0.12 0.00 3.78685 -125.526 -3.78685 3.78685 0.70 0.000699007 0.000640156 0.0577587 0.053592 46 2883 38 6.99608e+06 220735 828058. 2865.25 3.39 0.212827 0.185578 28066 200906 -1 2024 20 1406 2136 157327 35923 3.43852 3.43852 -123.865 -3.43852 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0277235 0.024243 91 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 13.53 vpr 62.61 MiB -1 -1 0.22 17724 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 291 230 1 167 80 17 17 289 -1 unnamed_device 24.1 MiB 0.79 698 11776 4112 5155 2509 62.6 MiB 0.10 0.00 4.31309 -119.613 -4.31309 4.31309 0.72 0.000624215 0.000580364 0.0473905 0.0440873 40 2369 28 6.99608e+06 235451 706193. 2443.58 9.83 0.301634 0.259934 26914 176310 -1 2009 23 1477 2518 249326 68662 4.26966 4.26966 -133.049 -4.26966 0 0 926341. 3205.33 0.24 0.10 0.16 -1 -1 0.24 0.0303984 0.0266719 69 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 17.45 vpr 63.26 MiB -1 -1 0.23 18108 1 0.03 -1 -1 30412 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 353 287 1 205 79 17 17 289 -1 unnamed_device 24.2 MiB 1.27 862 12585 4753 5708 2124 63.3 MiB 0.12 0.00 4.19608 -127.939 -4.19608 4.19608 0.68 0.000697465 0.000647605 0.0547042 0.0508222 38 3230 48 6.99608e+06 220735 678818. 2348.85 13.22 0.379394 0.327216 26626 170182 -1 2128 19 1557 2138 182030 38940 3.23321 3.23321 -118.635 -3.23321 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.027071 0.023698 90 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 8.43 vpr 63.35 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 24.3 MiB 1.56 946 11402 4534 5168 1700 63.4 MiB 0.11 0.00 3.61665 -125.974 -3.61665 3.61665 0.68 0.000713295 0.000660621 0.0506747 0.0470515 40 3373 27 6.99608e+06 220735 706193. 2443.58 3.92 0.200571 0.175257 26914 176310 -1 2720 22 1775 2673 249256 52847 3.65666 3.65666 -138.794 -3.65666 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0307386 0.0268369 93 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 7.43 vpr 63.57 MiB -1 -1 0.18 18220 1 0.03 -1 -1 30248 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 24.7 MiB 2.08 1092 13152 5486 7241 425 63.6 MiB 0.13 0.00 3.81447 -129.917 -3.81447 3.81447 0.68 0.0007539 0.000697415 0.0601056 0.0558523 46 2925 27 6.99608e+06 235451 828058. 2865.25 2.38 0.210817 0.184352 28066 200906 -1 2278 19 1796 2390 177921 42101 3.34751 3.34751 -126.123 -3.34751 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0265054 0.0236087 101 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 13.48 vpr 62.96 MiB -1 -1 0.21 17980 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 24.3 MiB 1.03 751 10204 3498 4965 1741 63.0 MiB 0.09 0.00 4.48113 -123.015 -4.48113 4.48113 0.70 0.000638862 0.000592321 0.0418086 0.0387887 40 2686 32 6.99608e+06 206020 706193. 2443.58 9.56 0.313297 0.269703 26914 176310 -1 2024 24 1488 2250 174372 40440 4.13042 4.13042 -131.697 -4.13042 0 0 926341. 3205.33 0.24 0.08 0.16 -1 -1 0.24 0.0295542 0.0256267 74 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 7.44 vpr 63.13 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30116 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 319 257 1 193 77 17 17 289 -1 unnamed_device 24.2 MiB 1.86 789 11161 3588 5346 2227 63.1 MiB 0.10 0.00 4.08638 -125.107 -4.08638 4.08638 0.63 0.000653365 0.000607436 0.0472488 0.0439479 40 2671 45 6.99608e+06 191304 706193. 2443.58 2.69 0.197172 0.171649 26914 176310 -1 2229 20 1798 2408 237570 50974 3.98701 3.98701 -139.933 -3.98701 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0262954 0.022954 81 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.01 vpr 63.66 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30340 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 24.6 MiB 0.83 960 12923 4769 6489 1665 63.7 MiB 0.12 0.00 4.33001 -137.493 -4.33001 4.33001 0.68 0.000730137 0.000678149 0.0579056 0.0538408 46 3262 28 6.99608e+06 235451 828058. 2865.25 4.17 0.275707 0.239069 28066 200906 -1 2240 21 1802 2662 180385 42129 4.03366 4.03366 -137.646 -4.03366 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0306436 0.0268581 99 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.65 vpr 63.49 MiB -1 -1 0.25 18124 1 0.03 -1 -1 30320 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 24.6 MiB 1.02 1085 14872 6411 8186 275 63.5 MiB 0.14 0.00 3.95718 -133.91 -3.95718 3.95718 0.68 0.000740004 0.000686835 0.0664649 0.0617078 46 3438 27 6.99608e+06 235451 828058. 2865.25 4.54 0.296906 0.257576 28066 200906 -1 2566 22 2336 3360 279653 57197 3.90226 3.90226 -136.587 -3.90226 0 0 1.01997e+06 3529.29 0.26 0.11 0.17 -1 -1 0.26 0.0324264 0.0283269 106 77 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.86 vpr 62.63 MiB -1 -1 0.20 18020 1 0.03 -1 -1 30364 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 251 219 1 151 74 17 17 289 -1 unnamed_device 23.9 MiB 0.50 584 9994 4131 5517 346 62.6 MiB 0.08 0.00 3.27254 -98.1459 -3.27254 3.27254 0.67 0.000561698 0.000516963 0.0377823 0.0351549 44 1896 43 6.99608e+06 147157 787024. 2723.27 3.51 0.216424 0.186468 27778 195446 -1 1353 17 935 1329 98033 24166 3.06092 3.06092 -97.4265 -3.06092 0 0 997811. 3452.63 0.26 0.05 0.17 -1 -1 0.26 0.0198614 0.0173881 60 23 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.52 vpr 63.37 MiB -1 -1 0.14 18276 1 0.03 -1 -1 30128 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 24.4 MiB 0.89 872 9036 3191 4723 1122 63.4 MiB 0.08 0.00 3.89113 -140.293 -3.89113 3.89113 0.70 0.000670937 0.000623647 0.0383708 0.0356826 44 3087 35 6.99608e+06 220735 787024. 2723.27 2.73 0.164018 0.142829 27778 195446 -1 2004 20 1867 2519 222462 45910 3.68341 3.68341 -137.359 -3.68341 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0269781 0.023557 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.93 vpr 63.38 MiB -1 -1 0.24 18340 1 0.03 -1 -1 30328 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 24.6 MiB 0.88 920 11776 4854 6254 668 63.4 MiB 0.11 0.00 4.78758 -149.316 -4.78758 4.78758 0.74 0.000758856 0.000704735 0.0550565 0.0511591 48 3455 47 6.99608e+06 235451 865456. 2994.66 3.87 0.237289 0.206959 28354 207349 -1 2342 22 2187 3298 304499 71557 4.94376 4.94376 -156.132 -4.94376 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0327941 0.0286679 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.76 vpr 63.25 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 24.3 MiB 0.62 871 12247 5090 6619 538 63.2 MiB 0.11 0.00 4.21616 -136.097 -4.21616 4.21616 0.68 0.000689467 0.000640708 0.0524246 0.0487448 46 2790 27 6.99608e+06 220735 828058. 2865.25 4.18 0.257943 0.223466 28066 200906 -1 2033 22 1764 2369 168064 38187 3.60811 3.60811 -129.881 -3.60811 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0296379 0.0258116 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 15.97 vpr 62.89 MiB -1 -1 0.18 18064 1 0.03 -1 -1 30504 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 24.3 MiB 1.69 641 12008 4694 6159 1155 62.9 MiB 0.09 0.00 3.67135 -114.032 -3.67135 3.67135 0.71 0.000587415 0.000543521 0.0418311 0.0388782 40 2118 44 6.99608e+06 294314 706193. 2443.58 11.34 0.296133 0.254635 26914 176310 -1 1753 21 1282 1962 260164 82998 3.52936 3.52936 -121.75 -3.52936 0 0 926341. 3205.33 0.25 0.09 0.16 -1 -1 0.25 0.0246824 0.0214894 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 8.03 vpr 63.73 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30516 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 431 332 1 260 82 17 17 289 -1 unnamed_device 24.7 MiB 0.94 1432 14144 5603 7508 1033 63.7 MiB 0.15 0.00 6.40939 -192.555 -6.40939 6.40939 0.68 0.000823784 0.000765761 0.0682564 0.0634251 48 3781 32 6.99608e+06 264882 865456. 2994.66 3.97 0.321909 0.279448 28354 207349 -1 3159 22 2427 3546 304769 61049 5.77539 5.77539 -188.538 -5.77539 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0359297 0.0313662 116 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.91 vpr 63.22 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30352 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 24.2 MiB 0.65 852 9374 3899 5203 272 63.2 MiB 0.09 0.00 4.9189 -148.418 -4.9189 4.9189 0.68 0.000691929 0.000643346 0.0418568 0.0389459 38 2787 31 6.99608e+06 206020 678818. 2348.85 3.25 0.176989 0.154242 26626 170182 -1 2002 21 1728 2348 174385 37585 4.06535 4.06535 -139.343 -4.06535 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0285734 0.0250144 83 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 12.41 vpr 62.42 MiB -1 -1 0.23 17608 1 0.03 -1 -1 30516 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 23.8 MiB 0.27 535 10509 4368 5789 352 62.4 MiB 0.08 0.00 2.922 -91.3971 -2.922 2.922 0.69 0.000534092 0.000496977 0.0363415 0.0338374 40 1896 38 6.99608e+06 191304 706193. 2443.58 9.31 0.265828 0.228333 26914 176310 -1 1509 21 991 1481 143085 34737 3.14927 3.14927 -103.816 -3.14927 0 0 926341. 3205.33 0.26 0.06 0.15 -1 -1 0.26 0.0219548 0.0190264 51 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 6.59 vpr 63.37 MiB -1 -1 0.24 18360 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 24.4 MiB 1.42 937 15044 6237 7403 1404 63.4 MiB 0.14 0.00 4.79375 -134.609 -4.79375 4.79375 0.68 0.000556487 0.000509724 0.064016 0.0594919 44 3213 27 6.99608e+06 235451 787024. 2723.27 2.17 0.184961 0.162973 27778 195446 -1 2245 25 1746 2823 236258 49811 4.97986 4.97986 -144.606 -4.97986 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0334141 0.0291243 85 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.02 vpr 62.61 MiB -1 -1 0.17 17692 1 0.02 -1 -1 30108 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 23.9 MiB 0.76 492 10204 2692 5791 1721 62.6 MiB 0.08 0.00 2.966 -96.76 -2.966 2.966 0.72 0.000554457 0.000516121 0.036069 0.0335809 38 1631 32 6.99608e+06 206020 678818. 2348.85 2.50 0.153438 0.133257 26626 170182 -1 1195 22 1046 1513 86598 21931 3.06997 3.06997 -104.764 -3.06997 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0240837 0.0209323 57 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.77 vpr 62.84 MiB -1 -1 0.23 17960 1 0.03 -1 -1 30048 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 24.3 MiB 0.74 683 11293 4547 5793 953 62.8 MiB 0.10 0.00 3.84183 -118.192 -3.84183 3.84183 0.68 0.000588344 0.000547567 0.0443713 0.0412897 38 2131 30 6.99608e+06 191304 678818. 2348.85 3.15 0.172746 0.150735 26626 170182 -1 1548 21 1163 1560 112003 25178 3.20221 3.20221 -112.039 -3.20221 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0246041 0.021383 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 9.01 vpr 63.45 MiB -1 -1 0.26 18240 1 0.03 -1 -1 30336 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 24.6 MiB 1.03 978 11064 4603 5811 650 63.4 MiB 0.10 0.00 4.04056 -127.05 -4.04056 4.04056 0.68 0.000691021 0.000641493 0.047699 0.0443335 44 3460 36 6.99608e+06 264882 787024. 2723.27 4.98 0.314581 0.270737 27778 195446 -1 2237 22 1721 2487 195932 42997 3.88346 3.88346 -131.875 -3.88346 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0297128 0.0258786 97 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.99 vpr 63.30 MiB -1 -1 0.20 18208 1 0.03 -1 -1 30316 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 358 289 1 219 79 17 17 289 -1 unnamed_device 24.3 MiB 1.37 980 14444 5001 7107 2336 63.3 MiB 0.13 0.00 4.54753 -143.667 -4.54753 4.54753 0.68 0.000700086 0.000650022 0.0630786 0.0586228 38 3493 41 6.99608e+06 220735 678818. 2348.85 2.65 0.197532 0.173294 26626 170182 -1 2608 21 2012 2796 244213 51678 4.40255 4.40255 -157.439 -4.40255 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.029502 0.0257754 93 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.42 vpr 63.20 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30376 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 24.3 MiB 3.11 1118 12585 4147 6271 2167 63.2 MiB 0.12 0.00 4.58917 -148.796 -4.58917 4.58917 0.71 0.000701113 0.000652239 0.0548877 0.0510579 40 2940 33 6.99608e+06 220735 706193. 2443.58 3.34 0.207768 0.181434 26914 176310 -1 2614 22 1958 2844 308347 61854 4.45201 4.45201 -153.727 -4.45201 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0307348 0.0268196 90 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.18 vpr 62.77 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30100 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 24.2 MiB 1.72 646 11767 4636 5730 1401 62.8 MiB 0.10 0.00 4.03444 -123.732 -4.03444 4.03444 0.72 0.000593108 0.000552054 0.0461891 0.0430133 46 2438 26 6.99608e+06 161872 828058. 2865.25 4.43 0.222702 0.192698 28066 200906 -1 1572 26 1180 1552 122096 28753 3.46386 3.46386 -118.174 -3.46386 0 0 1.01997e+06 3529.29 0.26 0.07 0.20 -1 -1 0.26 0.0287614 0.0249455 67 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 5.75 vpr 63.28 MiB -1 -1 0.24 18316 1 0.02 -1 -1 30400 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 24.3 MiB 0.80 795 12791 5222 5710 1859 63.3 MiB 0.11 0.00 3.72927 -124.319 -3.72927 3.72927 0.69 0.000642652 0.000597184 0.0532818 0.0495481 44 2591 26 6.99608e+06 206020 787024. 2723.27 1.95 0.15546 0.136678 27778 195446 -1 1899 23 1534 2162 165982 36611 3.60141 3.60141 -123.632 -3.60141 0 0 997811. 3452.63 0.26 0.08 0.18 -1 -1 0.26 0.0285564 0.0248507 86 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 7.54 vpr 63.21 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30384 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 24.2 MiB 1.19 844 13731 4372 6963 2396 63.2 MiB 0.12 0.00 3.3817 -109.729 -3.3817 3.3817 0.68 0.000651228 0.000604635 0.0536258 0.049803 40 2972 39 6.99608e+06 279598 706193. 2443.58 3.34 0.210864 0.184502 26914 176310 -1 1994 24 1750 2466 236383 60060 3.06321 3.06321 -110.106 -3.06321 0 0 926341. 3205.33 0.24 0.10 0.14 -1 -1 0.24 0.0301618 0.0261913 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 7.36 vpr 62.68 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30316 -1 -1 17 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 24.2 MiB 0.51 703 11976 4217 5816 1943 62.7 MiB 0.09 0.00 3.6892 -102.61 -3.6892 3.6892 0.68 0.000586793 0.000545683 0.0452123 0.04203 40 2134 23 6.99608e+06 250167 706193. 2443.58 3.96 0.23387 0.201701 26914 176310 -1 1788 20 1317 1928 212398 44387 3.51816 3.51816 -110.645 -3.51816 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0236136 0.0205335 71 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 5.51 vpr 63.12 MiB -1 -1 0.23 18104 1 0.03 -1 -1 30396 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 24.2 MiB 0.76 796 9042 3476 4677 889 63.1 MiB 0.09 0.00 4.23312 -132.968 -4.23312 4.23312 0.71 0.000632875 0.000588264 0.0393155 0.0365005 44 2471 25 6.99608e+06 220735 787024. 2723.27 1.75 0.145968 0.127446 27778 195446 -1 1793 21 1664 2228 177685 38515 3.71386 3.71386 -130.295 -3.71386 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0264488 0.0230325 88 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.73 vpr 63.25 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30188 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 24.3 MiB 0.79 932 13524 5742 7441 341 63.3 MiB 0.12 0.00 3.33761 -122.631 -3.33761 3.33761 0.68 0.000661775 0.000614173 0.0565403 0.0525286 46 2602 32 6.99608e+06 206020 828058. 2865.25 3.94 0.265991 0.230251 28066 200906 -1 2009 20 1718 2353 172584 38355 3.51211 3.51211 -128.602 -3.51211 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0266526 0.0232426 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 5.38 vpr 62.69 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30376 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.2 MiB 0.53 734 13911 5021 5993 2897 62.7 MiB 0.12 0.00 4.52238 -122.271 -4.52238 4.52238 0.68 0.000715989 0.000660621 0.0542717 0.0501172 44 2469 50 6.99608e+06 353176 787024. 2723.27 1.95 0.184135 0.160578 27778 195446 -1 1737 22 1226 2079 141220 32771 4.03642 4.03642 -127.786 -4.03642 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0271386 0.0236522 74 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.97 vpr 63.46 MiB -1 -1 0.18 18352 1 0.03 -1 -1 30456 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 24.6 MiB 1.17 829 10204 4200 5555 449 63.5 MiB 0.10 0.00 4.50341 -148.643 -4.50341 4.50341 0.68 0.000702203 0.000652403 0.0461568 0.0429482 52 2882 26 6.99608e+06 206020 926341. 3205.33 5.82 0.308354 0.265983 29218 227130 -1 2059 21 1658 2441 183994 42143 3.9837 3.9837 -139.238 -3.9837 0 0 1.14541e+06 3963.36 0.29 0.08 0.23 -1 -1 0.29 0.0293451 0.0256825 86 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.34 vpr 63.62 MiB -1 -1 0.25 18144 1 0.03 -1 -1 30340 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1083 14606 4862 7486 2258 63.6 MiB 0.14 0.00 5.11069 -165.7 -5.11069 5.11069 0.68 0.000744127 0.000688213 0.065007 0.0603551 44 3460 33 6.99608e+06 250167 787024. 2723.27 3.37 0.226346 0.198104 27778 195446 -1 2572 23 2258 3110 251900 53678 5.12834 5.12834 -169.932 -5.12834 0 0 997811. 3452.63 0.28 0.10 0.17 -1 -1 0.28 0.0333417 0.0290446 102 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 10.11 vpr 63.51 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 24.7 MiB 0.98 1036 9181 3131 4714 1336 63.5 MiB 0.10 0.00 4.33426 -143.87 -4.33426 4.33426 0.71 0.000745672 0.000692504 0.0423756 0.0394432 56 3044 44 6.99608e+06 250167 973134. 3367.25 6.06 0.347236 0.298821 29794 239141 -1 2372 22 2062 2896 252385 53060 4.0145 4.0145 -144.544 -4.0145 0 0 1.19926e+06 4149.71 0.30 0.10 0.22 -1 -1 0.30 0.0322058 0.0281234 104 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.45 vpr 62.75 MiB -1 -1 0.22 18100 1 0.03 -1 -1 30164 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 24.3 MiB 0.85 635 9713 3107 4623 1983 62.8 MiB 0.08 0.00 4.08266 -116.386 -4.08266 4.08266 0.68 0.000578989 0.000537771 0.0376978 0.0350579 44 2129 25 6.99608e+06 191304 787024. 2723.27 1.69 0.131355 0.114783 27778 195446 -1 1497 24 1199 1715 131162 28757 3.21021 3.21021 -110.586 -3.21021 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0267396 0.0232279 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.91 vpr 63.38 MiB -1 -1 0.21 18236 1 0.03 -1 -1 30568 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 24.6 MiB 0.90 883 12120 4402 5485 2233 63.4 MiB 0.11 0.00 5.1699 -158.063 -5.1699 5.1699 0.67 0.000721968 0.000671199 0.0536661 0.0498326 48 2922 49 6.99608e+06 264882 865456. 2994.66 4.99 0.349744 0.301395 28354 207349 -1 2248 21 2138 3053 249900 59890 5.1971 5.1971 -167.765 -5.1971 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.030304 0.0264798 104 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 8.13 vpr 63.16 MiB -1 -1 0.24 18156 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 24.2 MiB 0.69 788 9374 3088 4347 1939 63.2 MiB 0.09 0.00 4.91711 -144.854 -4.91711 4.91711 0.69 0.000687274 0.000639083 0.0416753 0.0387941 54 2286 40 6.99608e+06 206020 949917. 3286.91 4.31 0.267315 0.230725 29506 232905 -1 1621 19 1321 2164 139952 35343 4.04535 4.04535 -135.966 -4.04535 0 0 1.17392e+06 4061.99 0.30 0.07 0.21 -1 -1 0.30 0.026567 0.0232804 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 7.22 vpr 63.39 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30068 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 340 275 1 196 80 17 17 289 -1 unnamed_device 24.4 MiB 1.08 828 14528 6197 7823 508 63.4 MiB 0.13 0.00 5.0524 -144.146 -5.0524 5.0524 0.68 0.000683269 0.0006346 0.060004 0.0557774 38 3321 44 6.99608e+06 250167 678818. 2348.85 3.25 0.204318 0.179017 26626 170182 -1 2238 25 1699 2500 204991 46682 4.45981 4.45981 -147.934 -4.45981 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0324157 0.0282148 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.82 vpr 63.40 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30036 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 24.5 MiB 1.34 998 14606 5096 6874 2636 63.4 MiB 0.13 0.00 4.3242 -135.003 -4.3242 4.3242 0.67 0.000719139 0.000668155 0.063099 0.0586206 46 3279 31 6.99608e+06 279598 828058. 2865.25 4.40 0.277742 0.240779 28066 200906 -1 2277 21 2181 2990 217660 49510 4.4295 4.4295 -146.67 -4.4295 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0298567 0.0261268 107 83 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 9.04 vpr 63.32 MiB -1 -1 0.23 18316 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 24.3 MiB 1.50 1123 15831 6103 7773 1955 63.3 MiB 0.15 0.00 4.68727 -152.859 -4.68727 4.68727 0.69 0.000724986 0.000673495 0.067514 0.0626748 44 2988 22 6.99608e+06 250167 787024. 2723.27 4.44 0.277239 0.241021 27778 195446 -1 2413 20 1812 2583 214244 43226 4.27741 4.27741 -153.972 -4.27741 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0286897 0.0250656 95 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.46 vpr 63.50 MiB -1 -1 0.21 18196 1 0.03 -1 -1 30312 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 24.6 MiB 1.92 1106 12156 3661 6482 2013 63.5 MiB 0.11 0.00 3.82165 -125.941 -3.82165 3.82165 0.71 0.000713098 0.000661566 0.0522412 0.0485103 38 3242 28 6.99608e+06 294314 678818. 2348.85 3.64 0.208609 0.1823 26626 170182 -1 2602 22 1986 2601 212313 44205 3.85722 3.85722 -135.545 -3.85722 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0308992 0.0269335 109 85 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.51 vpr 62.55 MiB -1 -1 0.21 17740 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 24.1 MiB 2.17 497 9529 2774 4777 1978 62.6 MiB 0.07 0.00 3.56099 -102.406 -3.56099 3.56099 0.68 0.000551925 0.000513414 0.0359835 0.0335279 50 1343 28 6.99608e+06 147157 902133. 3121.57 2.47 0.148823 0.129384 28642 213929 -1 1025 26 974 1476 91476 23979 3.21827 3.21827 -98.6875 -3.21827 0 0 1.08113e+06 3740.92 0.28 0.06 0.20 -1 -1 0.28 0.0267765 0.0232479 54 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 8.51 vpr 63.46 MiB -1 -1 0.23 18176 1 0.03 -1 -1 30388 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 24.7 MiB 0.69 934 8831 2712 4206 1913 63.5 MiB 0.09 0.00 5.01054 -157.498 -5.01054 5.01054 0.67 0.000729128 0.000677151 0.0392439 0.0364633 54 2473 24 6.99608e+06 250167 949917. 3286.91 4.75 0.283383 0.244217 29506 232905 -1 2014 23 1966 2770 224036 48219 4.52184 4.52184 -150.566 -4.52184 0 0 1.17392e+06 4061.99 0.30 0.10 0.24 -1 -1 0.30 0.0328562 0.028753 100 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 7.06 vpr 63.64 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30280 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 24.7 MiB 0.90 1037 11456 4156 5041 2259 63.6 MiB 0.11 0.00 4.93306 -166.082 -4.93306 4.93306 0.70 0.000760506 0.000706463 0.0526707 0.0489376 44 3965 44 6.99608e+06 250167 787024. 2723.27 3.09 0.202959 0.177746 27778 195446 -1 2622 24 2664 3735 313256 64961 4.90074 4.90074 -173.084 -4.90074 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.0352523 0.0307584 109 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 8.24 vpr 62.68 MiB -1 -1 0.17 18068 1 0.03 -1 -1 30300 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 24.0 MiB 1.20 644 12241 5168 6711 362 62.7 MiB 0.10 0.00 3.78577 -113.025 -3.78577 3.78577 0.68 0.000587067 0.000538559 0.046738 0.0434737 44 2214 37 6.99608e+06 161872 787024. 2723.27 4.18 0.240027 0.207533 27778 195446 -1 1516 21 1065 1330 98779 22991 3.09311 3.09311 -108.774 -3.09311 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0240878 0.0209928 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.70 vpr 62.78 MiB -1 -1 0.22 17588 1 0.03 -1 -1 30384 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.2 MiB 0.89 467 10956 2929 5982 2045 62.8 MiB 0.08 0.00 3.36359 -99.0047 -3.36359 3.36359 0.75 0.000557263 0.000519207 0.0394894 0.0367793 48 1458 23 6.99608e+06 191304 865456. 2994.66 3.82 0.228087 0.196324 28354 207349 -1 1149 20 1037 1562 107224 27427 2.97667 2.97667 -103.555 -2.97667 0 0 1.05005e+06 3633.38 0.27 0.06 0.18 -1 -1 0.27 0.0220632 0.0191992 57 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 10.82 vpr 63.16 MiB -1 -1 0.24 18192 1 0.03 -1 -1 30416 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 24.1 MiB 0.85 775 12754 5312 6863 579 63.2 MiB 0.11 0.00 4.29802 -140.072 -4.29802 4.29802 0.68 0.000698643 0.000649637 0.0552815 0.0514174 48 2804 25 6.99608e+06 220735 865456. 2994.66 6.99 0.301877 0.261537 28354 207349 -1 2110 22 1910 2568 220393 52114 4.7131 4.7131 -155.264 -4.7131 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0301788 0.0263432 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.84 vpr 63.21 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 356 289 1 217 79 17 17 289 -1 unnamed_device 24.2 MiB 1.66 1200 10050 2860 5275 1915 63.2 MiB 0.10 0.00 4.58812 -146.135 -4.58812 4.58812 0.68 0.000705137 0.00065402 0.0444481 0.0412489 44 3098 28 6.99608e+06 220735 787024. 2723.27 4.23 0.278932 0.240665 27778 195446 -1 2424 23 1470 2021 162241 32994 4.01671 4.01671 -141.1 -4.01671 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0312084 0.0272185 95 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 7.67 vpr 63.31 MiB -1 -1 0.20 18028 1 0.03 -1 -1 30172 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.4 MiB 0.44 875 12156 5059 6582 515 63.3 MiB 0.11 0.00 4.64591 -137.502 -4.64591 4.64591 0.68 0.000714676 0.000664102 0.0523771 0.0487032 40 3001 48 6.99608e+06 250167 706193. 2443.58 4.28 0.230235 0.200903 26914 176310 -1 2413 25 2029 3465 277166 62434 5.02705 5.02705 -153.157 -5.02705 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0340167 0.0295919 83 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 9.61 vpr 63.11 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30312 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 24.2 MiB 2.49 811 12860 4243 6447 2170 63.1 MiB 0.11 0.00 3.96842 -107.825 -3.96842 3.96842 0.68 0.00064619 0.000601724 0.0521514 0.0485206 46 2449 28 6.99608e+06 235451 828058. 2865.25 4.14 0.238832 0.206488 28066 200906 -1 1888 22 1521 2302 187777 40324 3.20841 3.20841 -110.256 -3.20841 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0275544 0.0239894 87 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 13.68 vpr 62.70 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30348 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 23.9 MiB 2.03 489 7669 3106 4069 494 62.7 MiB 0.06 0.00 3.4808 -102.051 -3.4808 3.4808 0.67 0.000549273 0.000511468 0.0290817 0.0270601 38 2144 42 6.99608e+06 220735 678818. 2348.85 8.90 0.277872 0.238007 26626 170182 -1 1355 22 1106 1621 145910 35143 3.53956 3.53956 -112.677 -3.53956 0 0 902133. 3121.57 0.23 0.07 0.10 -1 -1 0.23 0.0238126 0.0206506 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 7.58 vpr 63.82 MiB -1 -1 0.25 18492 1 0.03 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 24.9 MiB 0.97 1332 12186 3960 6618 1608 63.8 MiB 0.13 0.00 4.21393 -148.472 -4.21393 4.21393 0.67 0.000812541 0.000755633 0.0586104 0.054515 46 3802 31 6.99608e+06 264882 828058. 2865.25 3.50 0.229665 0.200567 28066 200906 -1 3098 25 2477 3827 319015 62018 4.29751 4.29751 -154.976 -4.29751 0 0 1.01997e+06 3529.29 0.26 0.11 0.18 -1 -1 0.26 0.0385638 0.0336358 111 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 18.70 vpr 63.29 MiB -1 -1 0.26 18240 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 24.3 MiB 0.95 986 5756 1263 4208 285 63.3 MiB 0.07 0.00 5.65424 -162.981 -5.65424 5.65424 0.68 0.00071174 0.00066078 0.0264575 0.0245727 40 3074 34 6.99608e+06 250167 706193. 2443.58 14.65 0.325992 0.279852 26914 176310 -1 2702 28 2647 3753 480560 145673 5.2637 5.2637 -178.943 -5.2637 0 0 926341. 3205.33 0.24 0.16 0.16 -1 -1 0.24 0.0369331 0.0320309 100 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.94 vpr 63.28 MiB -1 -1 0.23 18204 1 0.03 -1 -1 30360 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 24.2 MiB 0.88 966 12030 5173 6617 240 63.3 MiB 0.10 0.00 3.99123 -142.235 -3.99123 3.99123 0.69 0.000657195 0.000610797 0.049849 0.046324 48 2359 23 6.99608e+06 206020 865456. 2994.66 4.10 0.235182 0.203781 28354 207349 -1 2012 20 1550 1970 181291 38605 3.6147 3.6147 -137.523 -3.6147 0 0 1.05005e+06 3633.38 0.28 0.08 0.14 -1 -1 0.28 0.0261626 0.0228043 91 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.06 vpr 63.29 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 24.4 MiB 0.73 812 13768 5924 7391 453 63.3 MiB 0.12 0.00 4.14137 -126.485 -4.14137 4.14137 0.68 0.000663297 0.00061557 0.0563809 0.0523515 46 2566 28 6.99608e+06 220735 828058. 2865.25 2.33 0.201777 0.176678 28066 200906 -1 1927 20 1267 1756 117851 26945 3.76272 3.76272 -126.629 -3.76272 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0267856 0.0234235 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.45 vpr 63.38 MiB -1 -1 0.27 18196 1 0.03 -1 -1 30432 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 24.3 MiB 2.27 911 12120 4489 5478 2153 63.4 MiB 0.11 0.00 4.14153 -124.204 -4.14153 4.14153 0.76 0.00072954 0.00067399 0.0545074 0.0505658 48 2470 25 6.99608e+06 250167 865456. 2994.66 4.03 0.258929 0.224446 28354 207349 -1 2069 21 1768 2487 183168 40754 3.95662 3.95662 -125.048 -3.95662 0 0 1.05005e+06 3633.38 0.27 0.08 0.21 -1 -1 0.27 0.0308451 0.026968 97 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.92 vpr 63.41 MiB -1 -1 0.20 18112 1 0.03 -1 -1 30396 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 30 32 325 268 1 199 80 17 17 289 -1 unnamed_device 24.5 MiB 1.59 860 13496 5767 7196 533 63.4 MiB 0.11 0.00 3.54615 -113.081 -3.54615 3.54615 0.71 0.000651015 0.000604076 0.0534947 0.0496922 46 2607 47 6.99608e+06 264882 828058. 2865.25 4.40 0.26051 0.225405 28066 200906 -1 1990 23 1472 2372 171331 37082 3.14741 3.14741 -111.674 -3.14741 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0290111 0.0252482 89 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 8.05 vpr 63.16 MiB -1 -1 0.24 18144 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 0.85 937 9042 3197 4114 1731 63.2 MiB 0.09 0.00 4.39601 -145.139 -4.39601 4.39601 0.69 0.000665043 0.00061265 0.0409209 0.0380488 46 3268 28 6.99608e+06 206020 828058. 2865.25 4.27 0.18744 0.16335 28066 200906 -1 2357 20 1918 2884 223863 48793 4.09442 4.09442 -146.658 -4.09442 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0283323 0.0248131 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 17.63 vpr 63.63 MiB -1 -1 0.22 18232 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 24.7 MiB 2.28 985 11260 4054 5703 1503 63.6 MiB 0.11 0.00 3.75091 -129.281 -3.75091 3.75091 0.67 0.000756134 0.000703416 0.0524962 0.0488218 40 3212 32 6.99608e+06 235451 706193. 2443.58 12.37 0.383026 0.330434 26914 176310 -1 2417 21 2274 3028 261524 58194 3.37457 3.37457 -134.662 -3.37457 0 0 926341. 3205.33 0.24 0.10 0.16 -1 -1 0.24 0.0315338 0.0276357 103 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 10.57 vpr 62.72 MiB -1 -1 0.24 17892 1 0.03 -1 -1 30368 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 24.0 MiB 1.86 580 10345 3835 4839 1671 62.7 MiB 0.09 0.00 4.0374 -114.573 -4.0374 4.0374 0.67 0.000570812 0.000530484 0.0395578 0.0367942 40 1759 25 6.99608e+06 206020 706193. 2443.58 5.85 0.271105 0.232557 26914 176310 -1 1521 22 1454 1851 189965 51937 3.55392 3.55392 -121.421 -3.55392 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0316457 0.0274504 70 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.64 vpr 62.78 MiB -1 -1 0.19 18216 1 0.04 -1 -1 30460 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 24.1 MiB 1.01 710 11200 4654 6133 413 62.8 MiB 0.10 0.00 4.05854 -127.727 -4.05854 4.05854 0.70 0.000509247 0.000474329 0.0446975 0.0415623 48 2075 27 6.99608e+06 206020 865456. 2994.66 5.61 0.26847 0.231199 28354 207349 -1 1685 19 1263 1746 156420 35580 3.82726 3.82726 -130.05 -3.82726 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0243056 0.021227 81 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.94 vpr 63.20 MiB -1 -1 0.25 18232 1 0.03 -1 -1 30432 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 31 32 326 261 1 192 78 17 17 289 -1 unnamed_device 24.2 MiB 0.71 833 12196 4708 5911 1577 63.2 MiB 0.11 0.00 4.19283 -126.892 -4.19283 4.19283 0.68 0.000665103 0.000618353 0.0512775 0.0476883 44 2512 43 6.99608e+06 220735 787024. 2723.27 4.23 0.292912 0.252919 27778 195446 -1 1898 17 1425 2036 154007 34405 3.80592 3.80592 -132.202 -3.80592 0 0 997811. 3452.63 0.26 0.07 0.18 -1 -1 0.26 0.0236632 0.0207572 80 33 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.77 vpr 62.77 MiB -1 -1 0.20 17968 1 0.03 -1 -1 30292 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 24.0 MiB 1.08 625 8909 3845 4668 396 62.8 MiB 0.07 0.00 3.79267 -110.13 -3.79267 3.79267 0.70 0.000563374 0.000524029 0.0344956 0.0320716 44 1701 25 6.99608e+06 191304 787024. 2723.27 3.78 0.19289 0.166107 27778 195446 -1 1404 23 1155 1449 107406 23865 3.03491 3.03491 -100.612 -3.03491 0 0 997811. 3452.63 0.30 0.06 0.17 -1 -1 0.30 0.0296184 0.0260298 68 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.28 vpr 62.97 MiB -1 -1 0.18 17928 1 0.03 -1 -1 30048 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 24.5 MiB 0.75 737 11436 4762 6383 291 63.0 MiB 0.10 0.00 4.0773 -124.169 -4.0773 4.0773 0.71 0.000594457 0.000552967 0.0446979 0.0416084 44 2022 22 6.99608e+06 176588 787024. 2723.27 1.65 0.138339 0.121311 27778 195446 -1 1605 23 1334 1754 130156 28569 3.24121 3.24121 -116.641 -3.24121 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0265702 0.0231258 73 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 6.24 vpr 63.39 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30536 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 373 300 1 231 81 17 17 289 -1 unnamed_device 24.6 MiB 0.91 983 14606 5438 6820 2348 63.4 MiB 0.14 0.00 4.38351 -142.434 -4.38351 4.38351 0.69 0.000725894 0.000674055 0.0641048 0.0595201 44 3308 29 6.99608e+06 264882 787024. 2723.27 2.36 0.213655 0.18669 27778 195446 -1 2284 22 2017 2674 212903 46643 3.91555 3.91555 -141.293 -3.91555 0 0 997811. 3452.63 0.25 0.09 0.11 -1 -1 0.25 0.0311565 0.0271865 103 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.10 vpr 62.73 MiB -1 -1 0.23 17912 1 0.03 -1 -1 30300 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 24.2 MiB 0.72 724 12236 4456 5440 2340 62.7 MiB 0.10 0.00 3.48012 -106.772 -3.48012 3.48012 0.69 0.00057608 0.000535862 0.0457695 0.0425881 40 2354 32 6.99608e+06 191304 706193. 2443.58 2.48 0.167458 0.145807 26914 176310 -1 1973 27 1536 2142 255746 49653 3.28462 3.28462 -115.252 -3.28462 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0287376 0.0248311 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.00 vpr 63.23 MiB -1 -1 0.25 18364 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 24.2 MiB 1.20 1045 14275 6069 7825 381 63.2 MiB 0.12 0.00 3.51899 -121.288 -3.51899 3.51899 0.69 0.000544714 0.000501752 0.0599277 0.055626 38 2528 20 6.99608e+06 220735 678818. 2348.85 3.80 0.270041 0.234296 26626 170182 -1 2176 20 1461 1984 153571 32028 3.28376 3.28376 -123.98 -3.28376 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0279358 0.0244569 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 18.68 vpr 63.48 MiB -1 -1 0.26 18220 1 0.04 -1 -1 30288 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 31 32 396 325 1 254 83 17 17 289 -1 unnamed_device 24.6 MiB 1.90 1199 11603 3562 6376 1665 63.5 MiB 0.11 0.00 4.92082 -166.246 -4.92082 4.92082 0.68 0.00075591 0.000701995 0.050821 0.0471503 44 3396 49 6.99608e+06 294314 787024. 2723.27 13.78 0.367131 0.316627 27778 195446 -1 2597 20 2345 3296 248918 52068 4.70579 4.70579 -163.224 -4.70579 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0293753 0.025716 113 91 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.13 vpr 63.16 MiB -1 -1 0.22 17876 1 0.03 -1 -1 30360 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 24.3 MiB 1.65 739 9516 3925 5290 301 63.2 MiB 0.08 0.00 3.40734 -116.434 -3.40734 3.40734 0.68 0.000619029 0.000574659 0.0389656 0.0362152 46 2552 39 6.99608e+06 176588 828058. 2865.25 4.56 0.239444 0.206334 28066 200906 -1 1830 20 1531 2042 184445 39904 3.54231 3.54231 -116.338 -3.54231 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0249426 0.0217476 81 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 14.11 vpr 62.83 MiB -1 -1 0.24 18160 1 0.03 -1 -1 30268 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 24.3 MiB 0.72 715 9871 2522 5750 1599 62.8 MiB 0.09 0.00 3.90682 -124.154 -3.90682 3.90682 0.68 0.000607256 0.000565371 0.0402432 0.0374987 38 2484 49 6.99608e+06 161872 678818. 2348.85 10.57 0.34239 0.293311 26626 170182 -1 1619 24 1408 1990 124637 31771 3.35457 3.35457 -120.004 -3.35457 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.028012 0.0243335 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 7.61 vpr 63.29 MiB -1 -1 0.23 18072 1 0.03 -1 -1 30244 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 24.4 MiB 1.78 781 10370 4270 5693 407 63.3 MiB 0.09 0.00 4.09738 -127.458 -4.09738 4.09738 0.68 0.000658623 0.000612148 0.0434439 0.0404106 40 2413 31 6.99608e+06 206020 706193. 2443.58 2.92 0.187396 0.163172 26914 176310 -1 1992 23 1736 2478 191462 45425 3.87526 3.87526 -134.613 -3.87526 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0292804 0.0255236 79 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.20 vpr 63.30 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30224 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 24.3 MiB 1.62 781 11233 4679 5976 578 63.3 MiB 0.10 0.00 3.78147 -113.144 -3.78147 3.78147 0.68 0.000650158 0.000603902 0.045699 0.0424699 44 2558 43 6.99608e+06 264882 787024. 2723.27 3.59 0.256778 0.221376 27778 195446 -1 1831 23 1313 1886 138551 30777 3.28551 3.28551 -106.486 -3.28551 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0288708 0.0251159 88 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 20.23 vpr 63.49 MiB -1 -1 0.24 18352 1 0.03 -1 -1 30472 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 393 312 1 234 80 17 17 289 -1 unnamed_device 24.6 MiB 0.62 1091 9196 3199 4253 1744 63.5 MiB 0.10 0.00 5.35159 -170.536 -5.35159 5.35159 0.68 0.000760631 0.000706576 0.043288 0.0401652 38 3606 29 6.99608e+06 235451 678818. 2348.85 16.58 0.340262 0.292921 26626 170182 -1 2963 22 2472 3677 328041 64783 5.08154 5.08154 -176.159 -5.08154 0 0 902133. 3121.57 0.25 0.13 0.15 -1 -1 0.25 0.0363162 0.0319266 105 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 7.98 vpr 62.37 MiB -1 -1 0.22 17744 1 0.03 -1 -1 30144 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 23.8 MiB 1.61 501 10476 4309 5764 403 62.4 MiB 0.08 0.00 3.34663 -90.271 -3.34663 3.34663 0.68 0.000528059 0.000491448 0.0367849 0.0342828 42 1777 25 6.99608e+06 191304 744469. 2576.02 3.47 0.215135 0.185054 27202 183097 -1 1367 22 1037 1615 111926 27569 3.00097 3.00097 -97.4931 -3.00097 0 0 949917. 3286.91 0.25 0.06 0.18 -1 -1 0.25 0.022873 0.0198644 54 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 17.86 vpr 63.66 MiB -1 -1 0.26 18096 1 0.03 -1 -1 30240 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 24.7 MiB 1.49 1108 15273 5294 7598 2381 63.7 MiB 0.15 0.00 4.76553 -162.292 -4.76553 4.76553 0.68 0.000774035 0.000718168 0.0702038 0.0650351 44 3594 30 6.99608e+06 294314 787024. 2723.27 13.30 0.34887 0.302507 27778 195446 -1 2463 21 2299 2874 212343 45589 4.8872 4.8872 -169.312 -4.8872 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.032705 0.0286895 116 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.22 vpr 63.46 MiB -1 -1 0.24 18416 1 0.04 -1 -1 30140 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.6 MiB 0.83 1251 14700 5946 7371 1383 63.5 MiB 0.13 0.00 4.39022 -162.789 -4.39022 4.39022 0.68 0.000710934 0.000659548 0.0633445 0.0588333 46 3165 23 6.99608e+06 235451 828058. 2865.25 4.34 0.281305 0.244623 28066 200906 -1 2578 20 2819 3499 286015 57172 4.20235 4.20235 -164.081 -4.20235 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0253136 0.0223992 110 96 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 6.61 vpr 63.58 MiB -1 -1 0.19 18244 1 0.04 -1 -1 30376 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 24.6 MiB 1.28 938 11571 4789 6322 460 63.6 MiB 0.11 0.00 3.68917 -121.181 -3.68917 3.68917 0.68 0.000716612 0.000665905 0.0512778 0.0476124 44 2997 38 6.99608e+06 220735 787024. 2723.27 2.41 0.213972 0.186545 27778 195446 -1 2021 22 1573 2077 140143 33620 3.32751 3.32751 -120.003 -3.32751 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0306508 0.0267657 94 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.29 vpr 63.55 MiB -1 -1 0.25 18152 1 0.03 -1 -1 30352 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 24.7 MiB 0.83 990 12078 4723 5862 1493 63.6 MiB 0.12 0.00 5.88882 -169.671 -5.88882 5.88882 0.68 0.000778059 0.000723208 0.0584115 0.0542753 46 3428 29 6.99608e+06 220735 828058. 2865.25 5.40 0.224816 0.196993 28066 200906 -1 2131 22 1989 2876 203116 44964 5.2634 5.2634 -163.518 -5.2634 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0335882 0.0294317 98 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.75 vpr 62.52 MiB -1 -1 0.17 18176 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 24.0 MiB 0.60 491 10769 4564 5875 330 62.5 MiB 0.08 0.00 2.5351 -91.4253 -2.5351 2.5351 0.68 0.000499208 0.000464224 0.0367825 0.0342559 38 1623 24 6.99608e+06 176588 678818. 2348.85 4.30 0.206452 0.177476 26626 170182 -1 1243 20 866 1091 98351 21996 2.47467 2.47467 -92.1644 -2.47467 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0198918 0.0172938 53 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.14 vpr 62.83 MiB -1 -1 0.23 18148 1 0.02 -1 -1 30444 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 24.3 MiB 3.12 632 10636 4449 5807 380 62.8 MiB 0.09 0.00 3.79502 -118.311 -3.79502 3.79502 0.71 0.000597636 0.000555722 0.0415653 0.0386466 38 1959 24 6.99608e+06 206020 678818. 2348.85 2.16 0.161454 0.140447 26626 170182 -1 1438 22 1176 1825 151610 32402 3.30746 3.30746 -120.098 -3.30746 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0257568 0.022347 68 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 5.46 vpr 62.91 MiB -1 -1 0.18 17896 1 0.02 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 24.3 MiB 0.64 759 10756 3879 5476 1401 62.9 MiB 0.09 0.00 3.9181 -124.027 -3.9181 3.9181 0.68 0.000617146 0.000573688 0.0402216 0.0374136 44 2500 22 6.99608e+06 250167 787024. 2723.27 1.98 0.137472 0.12019 27778 195446 -1 1893 21 1463 2309 206036 42705 3.68966 3.68966 -131.837 -3.68966 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0259138 0.0225344 78 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.68 vpr 62.46 MiB -1 -1 0.16 17868 1 0.03 -1 -1 30204 -1 -1 16 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 23.8 MiB 0.78 474 9649 4023 4847 779 62.5 MiB 0.07 0.00 3.40263 -78.2884 -3.40263 3.40263 0.68 0.000474866 0.000442114 0.0317539 0.0295654 42 1483 48 6.99608e+06 235451 744469. 2576.02 3.14 0.191496 0.164254 27202 183097 -1 1174 20 926 1251 89668 21860 2.99582 2.99582 -81.2561 -2.99582 0 0 949917. 3286.91 0.24 0.05 0.14 -1 -1 0.24 0.0191883 0.0166881 59 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.98 vpr 63.37 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30484 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 24.5 MiB 2.90 1081 13206 5184 6272 1750 63.4 MiB 0.13 0.00 3.9338 -132.793 -3.9338 3.9338 0.68 0.000730385 0.00067751 0.0571743 0.053116 40 3653 23 6.99608e+06 250167 706193. 2443.58 5.09 0.204687 0.17896 26914 176310 -1 3103 24 2274 3382 383840 79750 4.68512 4.68512 -148.279 -4.68512 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0339707 0.0295575 103 72 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.84 vpr 63.73 MiB -1 -1 0.26 18232 1 0.03 -1 -1 30236 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 24.8 MiB 2.09 1014 9872 4028 5433 411 63.7 MiB 0.10 0.00 4.45145 -145.194 -4.45145 4.45145 0.68 0.000765408 0.000710734 0.0454601 0.0422168 46 3229 45 6.99608e+06 279598 828058. 2865.25 4.74 0.313165 0.270312 28066 200906 -1 2235 22 1873 2532 179334 42457 4.32971 4.32971 -151.097 -4.32971 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0331657 0.0290011 117 90 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common 9.83 vpr 62.91 MiB -1 -1 0.35 18560 14 0.25 -1 -1 32752 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 277 309 1 206 82 17 17 289 -1 unnamed_device 23.9 MiB 1.55 1186 12542 3264 7587 1691 62.9 MiB 0.13 0.00 8.71839 -177.395 -8.71839 8.71839 0.68 0.000902155 0.000836517 0.067312 0.0624662 38 3483 48 6.79088e+06 242496 678818. 2348.85 4.96 0.285392 0.248338 25966 169698 -1 2756 15 1242 3582 189198 42544 7.79745 7.79745 -167.082 -7.79745 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0305612 0.0270076 129 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 8.20 vpr 63.02 MiB -1 -1 0.38 18428 14 0.28 -1 -1 32696 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 30 32 272 304 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1105 6490 1416 4592 482 63.0 MiB 0.07 0.00 7.86897 -158.546 -7.86897 7.86897 0.67 0.000885688 0.000820619 0.0358813 0.0332967 36 3118 40 6.79088e+06 269440 648988. 2245.63 2.93 0.240351 0.207618 25390 158009 -1 2591 18 1263 3297 200863 45222 7.24659 7.24659 -159.324 -7.24659 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0341861 0.0300535 125 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 10.00 vpr 62.88 MiB -1 -1 0.33 18212 11 0.22 -1 -1 32564 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 280 312 1 199 84 17 17 289 -1 unnamed_device 23.9 MiB 1.96 1230 6489 1446 4360 683 62.9 MiB 0.07 0.00 7.04868 -149.017 -7.04868 7.04868 0.67 0.000895013 0.000828805 0.0353562 0.0327888 36 3170 20 6.79088e+06 269440 648988. 2245.63 4.90 0.308224 0.264978 25390 158009 -1 2767 17 1179 3648 200212 45111 6.09953 6.09953 -144.627 -6.09953 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0331084 0.0291334 131 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 6.33 vpr 63.10 MiB -1 -1 0.34 18372 12 0.33 -1 -1 32720 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 29 32 275 307 1 201 84 17 17 289 -1 unnamed_device 24.1 MiB 1.10 1098 14175 4215 7544 2416 63.1 MiB 0.14 0.00 7.26911 -142.27 -7.26911 7.26911 0.69 0.000784527 0.000725935 0.0725285 0.0671312 38 3090 27 6.79088e+06 309856 678818. 2348.85 1.89 0.213594 0.187805 25966 169698 -1 2378 18 1247 3554 182390 41617 6.58078 6.58078 -137.462 -6.58078 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0346809 0.0304977 137 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 10.11 vpr 63.11 MiB -1 -1 0.37 18556 13 0.27 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 302 334 1 233 86 17 17 289 -1 unnamed_device 24.3 MiB 1.25 1390 8591 1959 5860 772 63.1 MiB 0.11 0.00 7.78026 -168.052 -7.78026 7.78026 0.67 0.000985004 0.000908867 0.050319 0.0464829 38 4161 45 6.79088e+06 296384 678818. 2348.85 5.50 0.294349 0.256731 25966 169698 -1 3297 19 1624 4586 266966 57831 6.63466 6.63466 -162.239 -6.63466 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0390722 0.034418 149 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 10.42 vpr 63.16 MiB -1 -1 0.36 18680 13 0.27 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 292 324 1 217 84 17 17 289 -1 unnamed_device 24.2 MiB 1.37 1328 6672 1413 4852 407 63.2 MiB 0.08 0.00 7.49919 -157.909 -7.49919 7.49919 0.68 0.000931827 0.000862426 0.0377631 0.0349832 46 3288 17 6.79088e+06 269440 828058. 2865.25 5.70 0.32446 0.280025 27406 200422 -1 2768 17 1320 3932 204231 45167 6.38057 6.38057 -147.675 -6.38057 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0346482 0.0305224 137 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 9.06 vpr 62.34 MiB -1 -1 0.32 18024 12 0.20 -1 -1 32560 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 27 32 229 261 1 171 80 17 17 289 -1 unnamed_device 23.8 MiB 1.36 838 8336 2337 5127 872 62.3 MiB 0.08 0.00 6.93882 -125.075 -6.93882 6.93882 0.68 0.000739335 0.000685185 0.0386659 0.0358644 28 2811 29 6.79088e+06 282912 531479. 1839.03 4.70 0.221089 0.190969 23950 126010 -1 2189 19 1390 3147 183913 43797 6.16912 6.16912 -123.368 -6.16912 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0293794 0.0257267 105 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 8.70 vpr 62.33 MiB -1 -1 0.32 18000 12 0.19 -1 -1 32744 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 229 261 1 184 80 17 17 289 -1 unnamed_device 23.8 MiB 1.96 959 11432 3848 5561 2023 62.3 MiB 0.10 0.00 6.08275 -133.062 -6.08275 6.08275 0.71 0.000728749 0.000674089 0.0515168 0.0476935 46 2414 21 6.79088e+06 229024 828058. 2865.25 3.49 0.250423 0.21682 27406 200422 -1 1944 14 950 2584 124538 28780 5.30961 5.30961 -124.482 -5.30961 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0239083 0.021181 104 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 8.96 vpr 62.36 MiB -1 -1 0.35 18244 12 0.16 -1 -1 32660 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 235 267 1 195 83 17 17 289 -1 unnamed_device 23.8 MiB 3.10 1109 11783 3162 6398 2223 62.4 MiB 0.11 0.00 7.00732 -147.482 -7.00732 7.00732 0.68 0.000759137 0.000702974 0.0516151 0.0477848 38 2960 20 6.79088e+06 269440 678818. 2348.85 2.71 0.177733 0.15595 25966 169698 -1 2417 17 1175 2973 165242 36496 6.1825 6.1825 -143.761 -6.1825 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0276696 0.0243924 113 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 8.73 vpr 62.47 MiB -1 -1 0.34 17852 13 0.19 -1 -1 32632 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 250 282 1 180 80 17 17 289 -1 unnamed_device 23.9 MiB 1.93 887 9196 2678 4545 1973 62.5 MiB 0.09 0.00 7.40889 -158.515 -7.40889 7.40889 0.68 0.000808633 0.000749498 0.0465039 0.0431074 44 2266 30 6.79088e+06 215552 787024. 2723.27 3.52 0.280405 0.241921 27118 194962 -1 1869 17 903 2328 121876 29786 6.74533 6.74533 -150.155 -6.74533 0 0 997811. 3452.63 0.26 0.07 0.18 -1 -1 0.26 0.0302382 0.0266543 107 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 8.51 vpr 62.33 MiB -1 -1 0.31 17980 12 0.19 -1 -1 32524 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 30 32 216 248 1 160 81 17 17 289 -1 unnamed_device 23.6 MiB 1.38 683 10756 3090 5343 2323 62.3 MiB 0.09 0.00 7.23574 -141.324 -7.23574 7.23574 0.78 0.000706493 0.000654479 0.0462039 0.042787 36 2333 41 6.79088e+06 255968 648988. 2245.63 3.83 0.267836 0.231596 25390 158009 -1 1748 15 917 2127 113478 29299 6.44778 6.44778 -140.479 -6.44778 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0239673 0.0211876 97 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 10.35 vpr 62.49 MiB -1 -1 0.29 17940 12 0.15 -1 -1 32728 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 236 268 1 170 80 17 17 289 -1 unnamed_device 24.0 MiB 1.96 1001 7820 2636 3784 1400 62.5 MiB 0.08 0.00 6.03241 -146.623 -6.03241 6.03241 0.68 0.000732438 0.000678477 0.0362 0.0335658 36 3109 40 6.79088e+06 215552 648988. 2245.63 5.35 0.210193 0.182085 25390 158009 -1 2423 16 1077 2911 172059 37799 5.26271 5.26271 -143.485 -5.26271 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0261089 0.0230252 100 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 9.44 vpr 63.25 MiB -1 -1 0.37 18644 13 0.27 -1 -1 32756 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 283 315 1 219 82 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1233 12720 4130 6639 1951 63.2 MiB 0.14 0.00 7.97631 -171.858 -7.97631 7.97631 0.71 0.000912204 0.000845179 0.0728533 0.0674482 38 3289 21 6.79088e+06 242496 678818. 2348.85 4.28 0.367197 0.31771 25966 169698 -1 2546 18 1306 3376 186303 42354 6.66272 6.66272 -157.742 -6.66272 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0349663 0.0307801 132 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 8.20 vpr 63.18 MiB -1 -1 0.26 18556 14 0.32 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 303 335 1 229 86 17 17 289 -1 unnamed_device 24.3 MiB 1.40 1316 6701 1480 4957 264 63.2 MiB 0.08 0.00 8.93186 -185.128 -8.93186 8.93186 0.68 0.000965431 0.000893012 0.0386777 0.0358164 40 3047 17 6.79088e+06 296384 706193. 2443.58 3.48 0.327552 0.281403 26254 175826 -1 3015 19 1367 3486 219715 48573 7.95051 7.95051 -180.852 -7.95051 0 0 926341. 3205.33 0.25 0.09 0.16 -1 -1 0.25 0.0361497 0.032441 151 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 7.88 vpr 62.41 MiB -1 -1 0.30 18032 11 0.17 -1 -1 32720 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 29 32 225 257 1 177 82 17 17 289 -1 unnamed_device 23.9 MiB 2.14 908 8626 2180 6066 380 62.4 MiB 0.08 0.00 6.88418 -136.715 -6.88418 6.88418 0.72 0.000724108 0.000669933 0.0379614 0.0351332 34 3042 48 6.79088e+06 282912 618332. 2139.56 2.61 0.212511 0.183897 25102 150614 -1 2376 26 1191 2748 267336 97173 5.91503 5.91503 -133.401 -5.91503 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0363391 0.0316751 105 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 7.96 vpr 63.04 MiB -1 -1 0.38 18472 12 0.27 -1 -1 32884 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 24.2 MiB 1.20 1369 10813 2694 6226 1893 63.0 MiB 0.11 0.00 7.38162 -160.306 -7.38162 7.38162 0.68 0.000976169 0.000903908 0.0580793 0.0538549 38 3708 26 6.79088e+06 323328 678818. 2348.85 3.41 0.265094 0.231212 25966 169698 -1 2967 17 1375 4182 225540 49634 6.53388 6.53388 -153.856 -6.53388 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0365009 0.0322732 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 7.95 vpr 62.96 MiB -1 -1 0.36 18324 14 0.25 -1 -1 32764 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 23.9 MiB 1.79 1236 11613 2985 6550 2078 63.0 MiB 0.12 0.00 8.17676 -170.064 -8.17676 8.17676 0.68 0.000895154 0.000828634 0.0602686 0.0558603 38 3415 19 6.79088e+06 269440 678818. 2348.85 2.86 0.236385 0.206141 25966 169698 -1 2691 18 1293 3341 180323 40261 6.8496 6.8496 -161.568 -6.8496 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0341714 0.0300408 126 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 9.18 vpr 62.26 MiB -1 -1 0.28 18284 12 0.20 -1 -1 32452 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 227 259 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.71 883 11281 4156 5456 1669 62.3 MiB 0.10 0.00 7.10207 -150.267 -7.10207 7.10207 0.67 0.000749718 0.000694254 0.0514526 0.0475921 38 2409 30 6.79088e+06 229024 678818. 2348.85 4.30 0.322196 0.278203 25966 169698 -1 1894 31 962 2582 283428 126209 5.93857 5.93857 -140.954 -5.93857 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0427003 0.0370227 104 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 6.39 vpr 61.92 MiB -1 -1 0.23 17736 10 0.12 -1 -1 32336 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 30 32 175 207 1 131 74 17 17 289 -1 unnamed_device 23.4 MiB 1.68 693 4724 1073 3462 189 61.9 MiB 0.05 0.00 5.04691 -118.984 -5.04691 5.04691 0.67 0.000563675 0.000523981 0.0191994 0.0178743 34 2177 27 6.79088e+06 161664 618332. 2139.56 1.88 0.111431 0.0963873 25102 150614 -1 1767 16 696 1667 107608 23786 4.59685 4.59685 -120.776 -4.59685 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0196663 0.0172295 64 87 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 8.37 vpr 62.29 MiB -1 -1 0.34 18060 13 0.19 -1 -1 32640 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 31 32 231 263 1 185 81 17 17 289 -1 unnamed_device 23.7 MiB 1.83 1078 7081 1598 4291 1192 62.3 MiB 0.07 0.00 7.44012 -155.367 -7.44012 7.44012 0.68 0.000753367 0.000693114 0.0332091 0.0307679 38 2549 23 6.79088e+06 242496 678818. 2348.85 3.46 0.243032 0.209129 25966 169698 -1 2114 18 1002 2395 111954 26863 6.19723 6.19723 -141.823 -6.19723 0 0 902133. 3121.57 0.24 0.06 0.15 -1 -1 0.24 0.0225209 0.0203014 107 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 7.76 vpr 63.07 MiB -1 -1 0.30 18572 13 0.28 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 304 336 1 225 85 17 17 289 -1 unnamed_device 24.2 MiB 1.84 1376 8083 2272 5247 564 63.1 MiB 0.09 0.00 7.87531 -169.049 -7.87531 7.87531 0.67 0.000940563 0.000868883 0.0454848 0.042111 40 3383 30 6.79088e+06 282912 706193. 2443.58 2.64 0.248911 0.215851 26254 175826 -1 3149 18 1544 4193 282548 62973 7.01948 7.01948 -163.981 -7.01948 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0368439 0.0324505 142 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 9.22 vpr 62.96 MiB -1 -1 0.38 18352 13 0.29 -1 -1 32464 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 288 320 1 217 85 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1366 6595 1403 4488 704 63.0 MiB 0.08 0.00 7.64506 -164.428 -7.64506 7.64506 0.68 0.000938184 0.000864485 0.0379158 0.035124 38 3755 26 6.79088e+06 282912 678818. 2348.85 3.87 0.23603 0.204444 25966 169698 -1 3109 17 1444 4235 254551 55709 6.63122 6.63122 -156.188 -6.63122 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0350236 0.0308965 141 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 6.52 vpr 61.90 MiB -1 -1 0.23 17688 9 0.11 -1 -1 32532 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63384 26 32 152 184 1 121 76 17 17 289 -1 unnamed_device 23.3 MiB 1.06 706 10316 3839 4776 1701 61.9 MiB 0.07 0.00 5.04309 -98.1528 -5.04309 5.04309 0.69 0.000514701 0.000478902 0.0351508 0.0326858 34 1633 17 6.79088e+06 242496 618332. 2139.56 2.61 0.16855 0.145202 25102 150614 -1 1485 15 582 1299 84732 19396 4.11565 4.11565 -91.5069 -4.11565 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0170704 0.0149702 67 76 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 7.28 vpr 62.98 MiB -1 -1 0.33 18280 13 0.28 -1 -1 32808 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 287 319 1 211 83 17 17 289 -1 unnamed_device 24.0 MiB 1.30 1125 5843 1079 4624 140 63.0 MiB 0.07 0.00 8.08076 -161.905 -8.08076 8.08076 0.87 0.000921051 0.000853489 0.0336045 0.0311646 38 3541 37 6.79088e+06 255968 678818. 2348.85 2.55 0.202712 0.17527 25966 169698 -1 2774 19 1484 4002 217994 49808 7.04987 7.04987 -155.269 -7.04987 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0367639 0.0322963 130 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 5.94 vpr 61.84 MiB -1 -1 0.23 17568 8 0.08 -1 -1 32204 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63328 32 32 154 186 1 126 81 17 17 289 -1 unnamed_device 23.3 MiB 1.62 620 6381 1458 4287 636 61.8 MiB 0.06 0.00 3.97346 -91.5032 -3.97346 3.97346 0.69 0.00051107 0.000472799 0.0227777 0.0211477 34 1854 23 6.79088e+06 229024 618332. 2139.56 1.53 0.121409 0.104734 25102 150614 -1 1546 20 734 1509 107953 25155 4.08086 4.08086 -100.889 -4.08086 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.020428 0.017779 63 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 9.02 vpr 62.89 MiB -1 -1 0.32 18316 15 0.29 -1 -1 32756 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 254 286 1 202 83 17 17 289 -1 unnamed_device 24.1 MiB 1.78 1221 6203 1498 4397 308 62.9 MiB 0.07 0.00 8.46989 -175.396 -8.46989 8.46989 0.68 0.0008469 0.000784802 0.0331709 0.0307728 38 3232 21 6.79088e+06 255968 678818. 2348.85 4.06 0.295361 0.25314 25966 169698 -1 2773 18 1360 3837 210322 46659 7.41463 7.41463 -167.004 -7.41463 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0322498 0.0282783 122 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 8.07 vpr 62.70 MiB -1 -1 0.30 18304 13 0.22 -1 -1 32924 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 260 292 1 193 82 17 17 289 -1 unnamed_device 23.8 MiB 1.64 1121 7558 1845 4695 1018 62.7 MiB 0.08 0.00 6.82492 -146.441 -6.82492 6.82492 0.68 0.000850726 0.000789392 0.0393734 0.0365309 40 2852 25 6.79088e+06 242496 706193. 2443.58 3.20 0.223747 0.194248 26254 175826 -1 2698 20 1308 3901 252106 54121 6.0649 6.0649 -143.158 -6.0649 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0351348 0.0307725 117 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 6.95 vpr 63.06 MiB -1 -1 0.34 18316 13 0.33 -1 -1 32672 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 279 311 1 202 83 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1252 5663 1219 3717 727 63.1 MiB 0.07 0.00 8.11176 -171.626 -8.11176 8.11176 0.67 0.000915592 0.000849441 0.0323924 0.0300846 38 3328 22 6.79088e+06 255968 678818. 2348.85 1.99 0.172875 0.150283 25966 169698 -1 2770 19 1361 4207 221978 49045 7.12472 7.12472 -161.614 -7.12472 0 0 902133. 3121.57 0.23 0.09 0.17 -1 -1 0.23 0.0360087 0.0315879 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 6.93 vpr 62.38 MiB -1 -1 0.31 18028 12 0.20 -1 -1 32612 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 23.8 MiB 1.82 909 9196 2899 4953 1344 62.4 MiB 0.09 0.00 6.83474 -151.755 -6.83474 6.83474 0.67 0.000752286 0.00069668 0.0432803 0.0400788 40 2458 21 6.79088e+06 215552 706193. 2443.58 1.97 0.190995 0.166078 26254 175826 -1 2162 18 1093 2601 156654 36987 6.27979 6.27979 -148.637 -6.27979 0 0 926341. 3205.33 0.24 0.07 0.16 -1 -1 0.24 0.0288585 0.0253988 103 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 6.56 vpr 62.17 MiB -1 -1 0.28 17996 11 0.18 -1 -1 32648 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 30 32 213 245 1 162 81 17 17 289 -1 unnamed_device 23.7 MiB 1.84 874 9531 2423 5364 1744 62.2 MiB 0.08 0.00 6.09984 -129.865 -6.09984 6.09984 0.68 0.000680234 0.000630489 0.0398047 0.0369001 36 2648 21 6.79088e+06 255968 648988. 2245.63 1.70 0.144395 0.126241 25390 158009 -1 2057 18 979 2242 129108 29960 5.36338 5.36338 -123.968 -5.36338 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0260797 0.0229117 96 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 6.98 vpr 62.39 MiB -1 -1 0.32 18060 11 0.17 -1 -1 32764 -1 -1 21 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 28 32 227 259 1 173 81 17 17 289 -1 unnamed_device 23.8 MiB 1.13 945 9706 2749 5392 1565 62.4 MiB 0.09 0.00 6.65573 -132.254 -6.65573 6.65573 0.67 0.000738501 0.00068436 0.0437189 0.0404976 36 2852 44 6.79088e+06 282912 648988. 2245.63 2.80 0.213937 0.185354 25390 158009 -1 2253 17 1028 2705 156034 35206 5.82893 5.82893 -129.747 -5.82893 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0272512 0.0239809 109 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 9.05 vpr 62.93 MiB -1 -1 0.30 18004 12 0.20 -1 -1 32696 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 274 306 1 208 81 17 17 289 -1 unnamed_device 24.0 MiB 2.02 1298 10581 2710 6410 1461 62.9 MiB 0.11 0.00 7.32069 -168.079 -7.32069 7.32069 0.68 0.000866047 0.000802328 0.0559467 0.051879 46 2887 19 6.79088e+06 229024 828058. 2865.25 3.71 0.293435 0.254094 27406 200422 -1 2463 17 1210 2743 152797 34378 6.36943 6.36943 -157.522 -6.36943 0 0 1.01997e+06 3529.29 0.32 0.08 0.17 -1 -1 0.32 0.031697 0.0279496 117 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 8.85 vpr 62.24 MiB -1 -1 0.28 18116 12 0.16 -1 -1 32604 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 23.7 MiB 1.90 906 12464 4448 5883 2133 62.2 MiB 0.11 0.00 6.76776 -137.818 -6.76776 6.76776 0.67 0.000744043 0.000689224 0.0566499 0.0524031 36 3090 39 6.79088e+06 229024 648988. 2245.63 3.86 0.228964 0.199614 25390 158009 -1 2201 20 1328 3715 233391 52318 5.95423 5.95423 -138.769 -5.95423 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0309692 0.0271106 101 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 8.08 vpr 62.29 MiB -1 -1 0.33 18004 10 0.14 -1 -1 32772 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 29 32 220 252 1 167 78 17 17 289 -1 unnamed_device 23.8 MiB 0.92 921 7382 1707 5211 464 62.3 MiB 0.07 0.00 5.94728 -131.013 -5.94728 5.94728 0.68 0.000727236 0.000673656 0.0352613 0.0326909 38 2468 29 6.79088e+06 229024 678818. 2348.85 4.06 0.260045 0.224244 25966 169698 -1 2070 17 911 2517 145509 32044 5.07353 5.07353 -123.658 -5.07353 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0268763 0.0237209 101 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 9.62 vpr 63.20 MiB -1 -1 0.38 18772 13 0.29 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 315 347 1 228 85 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1377 7339 1645 5038 656 63.2 MiB 0.09 0.00 8.22902 -172.723 -8.22902 8.22902 0.68 0.000992821 0.000918066 0.0432912 0.0400641 44 3400 35 6.79088e+06 282912 787024. 2723.27 4.63 0.348934 0.300869 27118 194962 -1 2777 18 1312 3813 206485 45286 7.09671 7.09671 -164.732 -7.09671 0 0 997811. 3452.63 0.30 0.09 0.19 -1 -1 0.30 0.0386834 0.0340599 147 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 9.16 vpr 62.88 MiB -1 -1 0.38 18768 14 0.31 -1 -1 33332 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 282 314 1 224 83 17 17 289 -1 unnamed_device 23.9 MiB 1.52 1265 11423 3369 5757 2297 62.9 MiB 0.12 0.00 7.78618 -171.47 -7.78618 7.78618 0.67 0.000925089 0.000857163 0.0636694 0.0589629 46 3400 17 6.79088e+06 255968 828058. 2865.25 4.15 0.337266 0.292242 27406 200422 -1 2758 20 1410 3910 205662 45475 6.87069 6.87069 -163.476 -6.87069 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0386459 0.0339829 137 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 7.27 vpr 62.26 MiB -1 -1 0.31 17960 12 0.15 -1 -1 32456 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 241 273 1 170 80 17 17 289 -1 unnamed_device 23.8 MiB 1.94 1020 5756 1178 4150 428 62.3 MiB 0.06 0.00 7.06821 -153.603 -7.06821 7.06821 0.68 0.000744932 0.000690059 0.0278447 0.0258204 34 2769 38 6.79088e+06 229024 618332. 2139.56 2.29 0.159895 0.138624 25102 150614 -1 2395 18 1022 2760 176300 38852 6.74523 6.74523 -154.445 -6.74523 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0285209 0.0250456 103 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 7.74 vpr 63.12 MiB -1 -1 0.35 18548 12 0.28 -1 -1 32808 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 307 339 1 223 87 17 17 289 -1 unnamed_device 24.3 MiB 2.37 1316 9879 2556 6613 710 63.1 MiB 0.11 0.00 7.54626 -159.356 -7.54626 7.54626 0.68 0.000978871 0.000906047 0.0542455 0.050229 38 3535 31 6.79088e+06 323328 678818. 2348.85 1.98 0.222686 0.194709 25966 169698 -1 2947 17 1380 3992 211528 47162 6.49016 6.49016 -151.667 -6.49016 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0363897 0.0321084 146 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 7.17 vpr 63.06 MiB -1 -1 0.36 18708 14 0.34 -1 -1 32824 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 293 325 1 208 86 17 17 289 -1 unnamed_device 24.3 MiB 1.22 1251 5189 1031 3752 406 63.1 MiB 0.06 0.00 8.43595 -166.985 -8.43595 8.43595 0.67 0.000941568 0.00087218 0.0296329 0.0274785 34 3867 46 6.79088e+06 309856 618332. 2139.56 2.65 0.226229 0.195172 25102 150614 -1 3016 22 1734 4891 301159 66213 7.40657 7.40657 -161.983 -7.40657 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0423609 0.0370859 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 10.12 vpr 62.92 MiB -1 -1 0.41 18564 13 0.26 -1 -1 32820 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 276 308 1 214 84 17 17 289 -1 unnamed_device 23.9 MiB 1.89 1271 13626 4763 6275 2588 62.9 MiB 0.14 0.00 8.48106 -170.153 -8.48106 8.48106 0.72 0.000896877 0.000830493 0.0711171 0.0659487 38 3853 46 6.79088e+06 282912 678818. 2348.85 4.70 0.288367 0.25131 25966 169698 -1 2921 25 1426 3817 344015 115253 7.3508 7.3508 -160.521 -7.3508 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0442758 0.0387124 131 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 21.08 vpr 62.95 MiB -1 -1 0.36 18384 13 0.25 -1 -1 32768 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 269 301 1 203 83 17 17 289 -1 unnamed_device 23.9 MiB 1.29 1222 7823 1713 5702 408 63.0 MiB 0.09 0.00 7.81091 -159.172 -7.81091 7.81091 0.67 0.000879657 0.000814345 0.0416921 0.0386357 38 3516 39 6.79088e+06 269440 678818. 2348.85 16.51 0.44 0.377587 25966 169698 -1 2802 17 1267 3682 219549 47592 6.72962 6.72962 -149.438 -6.72962 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0330507 0.0291561 124 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 6.55 vpr 62.66 MiB -1 -1 0.32 18032 12 0.23 -1 -1 32812 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 264 296 1 184 79 17 17 289 -1 unnamed_device 23.8 MiB 1.36 1065 5487 1235 3857 395 62.7 MiB 0.06 0.00 6.67703 -143.122 -6.67703 6.67703 0.68 0.000835448 0.000773745 0.031151 0.0288794 34 2811 41 6.79088e+06 202080 618332. 2139.56 2.00 0.180944 0.156556 25102 150614 -1 2268 14 988 2481 146427 33391 5.86813 5.86813 -136.449 -5.86813 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0266972 0.023561 110 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 8.45 vpr 63.23 MiB -1 -1 0.44 19196 14 0.41 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 324 356 1 243 85 17 17 289 -1 unnamed_device 24.4 MiB 1.08 1554 7897 2063 5110 724 63.2 MiB 0.10 0.00 8.5032 -181.474 -8.5032 8.5032 0.68 0.00103731 0.000959188 0.0489008 0.0452455 40 3897 28 6.79088e+06 282912 706193. 2443.58 3.75 0.279066 0.242753 26254 175826 -1 3723 19 1704 5197 378542 93252 7.3039 7.3039 -174.442 -7.3039 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0423379 0.0372923 159 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 12.90 vpr 62.73 MiB -1 -1 0.29 17980 11 0.21 -1 -1 32356 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 249 281 1 188 79 17 17 289 -1 unnamed_device 23.9 MiB 1.76 1138 3966 751 3109 106 62.7 MiB 0.05 0.00 6.36587 -138.564 -6.36587 6.36587 0.67 0.000803751 0.000745093 0.0231677 0.0214797 36 3745 42 6.79088e+06 215552 648988. 2245.63 8.02 0.313628 0.269084 25390 158009 -1 2890 20 1493 4258 294609 62197 5.61398 5.61398 -139.411 -5.61398 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0334021 0.0292252 112 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 9.88 vpr 63.06 MiB -1 -1 0.39 18636 13 0.23 -1 -1 33296 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 284 316 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 1.09 1227 8868 2138 5562 1168 63.1 MiB 0.10 0.00 8.05648 -168.256 -8.05648 8.05648 0.75 0.000904846 0.000837372 0.0487614 0.04519 36 3070 37 6.79088e+06 282912 648988. 2245.63 5.40 0.369678 0.318053 25390 158009 -1 2589 19 1196 3731 211584 47344 6.96022 6.96022 -156.818 -6.96022 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0366455 0.0320949 137 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 6.75 vpr 63.07 MiB -1 -1 0.36 18444 12 0.25 -1 -1 32688 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 303 335 1 210 85 17 17 289 -1 unnamed_device 24.0 MiB 1.41 1298 12361 2924 7866 1571 63.1 MiB 0.13 0.00 6.98572 -155.809 -6.98572 6.98572 0.68 0.000960348 0.00088747 0.0678562 0.0627557 38 3592 19 6.79088e+06 282912 678818. 2348.85 1.96 0.217595 0.190633 25966 169698 -1 2849 20 1609 4984 262433 57372 5.91508 5.91508 -148.327 -5.91508 0 0 902133. 3121.57 0.23 0.11 0.14 -1 -1 0.23 0.0401753 0.0352171 145 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 6.59 vpr 62.89 MiB -1 -1 0.33 18236 13 0.24 -1 -1 32712 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 272 304 1 195 84 17 17 289 -1 unnamed_device 24.0 MiB 1.21 1155 7770 1729 5200 841 62.9 MiB 0.08 0.00 7.69291 -164.646 -7.69291 7.69291 0.67 0.000890894 0.000825103 0.0413775 0.0383659 36 2952 19 6.79088e+06 269440 648988. 2245.63 2.21 0.214129 0.185943 25390 158009 -1 2586 17 1154 3000 174478 39827 6.83149 6.83149 -160.017 -6.83149 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0327208 0.0287642 128 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 10.08 vpr 62.82 MiB -1 -1 0.27 18556 13 0.21 -1 -1 33228 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 271 303 1 213 82 17 17 289 -1 unnamed_device 23.9 MiB 2.13 1245 11296 3823 5504 1969 62.8 MiB 0.11 0.00 7.62172 -162.859 -7.62172 7.62172 0.67 0.000868727 0.000805283 0.058691 0.0543905 44 3263 36 6.79088e+06 242496 787024. 2723.27 4.84 0.330926 0.28597 27118 194962 -1 2597 17 1206 3178 182003 39765 6.63466 6.63466 -152.703 -6.63466 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0353558 0.0314772 123 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 9.53 vpr 63.12 MiB -1 -1 0.37 18532 12 0.25 -1 -1 32880 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 288 320 1 213 86 17 17 289 -1 unnamed_device 24.4 MiB 1.72 1309 8402 2054 5716 632 63.1 MiB 0.09 0.00 7.46308 -161.108 -7.46308 7.46308 0.67 0.000929497 0.000860364 0.0451429 0.0417947 44 3484 26 6.79088e+06 296384 787024. 2723.27 4.49 0.321641 0.276818 27118 194962 -1 2825 18 1239 3984 221614 48189 6.67037 6.67037 -152.367 -6.67037 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.03696 0.0325814 141 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 9.26 vpr 63.20 MiB -1 -1 0.38 18908 13 0.30 -1 -1 33320 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 306 338 1 225 85 17 17 289 -1 unnamed_device 24.4 MiB 1.21 1275 4735 898 3382 455 63.2 MiB 0.06 0.00 8.09732 -172.599 -8.09732 8.09732 0.70 0.000986659 0.000913785 0.0303704 0.0281843 40 3115 20 6.79088e+06 282912 706193. 2443.58 4.65 0.349691 0.300318 26254 175826 -1 2900 20 1373 3870 305211 93998 6.90978 6.90978 -160.239 -6.90978 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0409193 0.0359345 146 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 8.73 vpr 63.00 MiB -1 -1 0.34 18180 14 0.27 -1 -1 32768 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 262 294 1 194 83 17 17 289 -1 unnamed_device 24.0 MiB 1.29 1332 6383 1390 4359 634 63.0 MiB 0.07 0.00 8.35004 -171.056 -8.35004 8.35004 0.67 0.00086328 0.0008003 0.0340564 0.0315964 46 2894 25 6.79088e+06 255968 828058. 2865.25 4.18 0.328645 0.282301 27406 200422 -1 2584 19 1154 3294 165810 37107 7.17517 7.17517 -156.302 -7.17517 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0341166 0.0299677 125 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 9.12 vpr 63.04 MiB -1 -1 0.34 18288 13 0.24 -1 -1 32780 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 291 323 1 212 84 17 17 289 -1 unnamed_device 24.0 MiB 1.59 1280 6306 1448 4128 730 63.0 MiB 0.07 0.00 8.18011 -164.079 -8.18011 8.18011 0.67 0.000934987 0.000866248 0.0359194 0.0333388 44 3254 31 6.79088e+06 269440 787024. 2723.27 4.24 0.30938 0.26632 27118 194962 -1 2770 17 1302 3567 195331 44666 7.38995 7.38995 -161.099 -7.38995 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0339991 0.0299436 136 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 19.68 vpr 63.10 MiB -1 -1 0.41 18428 13 0.27 -1 -1 32684 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 302 334 1 224 85 17 17 289 -1 unnamed_device 24.3 MiB 1.55 1301 8083 1880 5114 1089 63.1 MiB 0.09 0.00 7.82203 -169.793 -7.82203 7.82203 0.68 0.000957904 0.000887264 0.0456349 0.0423038 38 3364 33 6.79088e+06 296384 678818. 2348.85 14.63 0.422867 0.363407 25966 169698 -1 2875 19 1442 4033 203579 45890 7.16392 7.16392 -162.446 -7.16392 0 0 902133. 3121.57 0.30 0.09 0.16 -1 -1 0.30 0.0382525 0.0336106 144 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 6.48 vpr 63.01 MiB -1 -1 0.39 18496 12 0.31 -1 -1 32884 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.2 MiB 1.19 1349 6967 1481 4942 544 63.0 MiB 0.08 0.00 7.58336 -160.336 -7.58336 7.58336 0.68 0.000988356 0.000916482 0.0402369 0.0372616 38 3461 22 6.79088e+06 282912 678818. 2348.85 1.93 0.202868 0.176476 25966 169698 -1 2825 17 1341 3714 193952 43570 6.65918 6.65918 -153.457 -6.65918 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0358625 0.0316352 147 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 8.44 vpr 62.20 MiB -1 -1 0.23 18144 11 0.13 -1 -1 32620 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 32 32 216 248 1 161 78 17 17 289 -1 unnamed_device 23.5 MiB 1.16 854 6552 1491 4896 165 62.2 MiB 0.07 0.00 6.10408 -131.471 -6.10408 6.10408 0.68 0.000692639 0.000641916 0.029647 0.0274593 36 2444 29 6.79088e+06 188608 648988. 2245.63 4.40 0.259656 0.222814 25390 158009 -1 1945 16 889 2176 140210 32931 5.23808 5.23808 -129.554 -5.23808 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.024101 0.0212212 91 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 8.30 vpr 62.78 MiB -1 -1 0.34 18172 13 0.21 -1 -1 32776 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 254 286 1 196 83 17 17 289 -1 unnamed_device 24.2 MiB 1.54 1125 4583 881 3537 165 62.8 MiB 0.05 0.00 7.79846 -167.848 -7.79846 7.79846 0.68 0.000824744 0.000763847 0.0241521 0.0223916 36 3266 28 6.79088e+06 255968 648988. 2245.63 3.58 0.201277 0.173577 25390 158009 -1 2548 15 1146 2804 171576 37989 6.91332 6.91332 -163.48 -6.91332 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0280936 0.0247287 117 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 10.67 vpr 63.46 MiB -1 -1 0.39 19068 14 0.48 -1 -1 33080 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 338 370 1 252 88 17 17 289 -1 unnamed_device 24.5 MiB 1.05 1553 10618 2680 6617 1321 63.5 MiB 0.12 0.00 9.27313 -184.831 -9.27313 9.27313 0.67 0.00108656 0.00100472 0.0634725 0.0587754 44 4343 46 6.79088e+06 323328 787024. 2723.27 5.94 0.449202 0.388097 27118 194962 -1 3334 17 1642 4998 271773 59529 8.0278 8.0278 -171.471 -8.0278 0 0 997811. 3452.63 0.26 0.11 0.18 -1 -1 0.26 0.0404821 0.0357887 171 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 7.12 vpr 62.95 MiB -1 -1 0.35 18224 13 0.37 -1 -1 32736 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 271 303 1 215 83 17 17 289 -1 unnamed_device 23.9 MiB 1.29 1263 10343 2759 5468 2116 62.9 MiB 0.11 0.00 7.95077 -174.752 -7.95077 7.95077 0.70 0.000892807 0.000826735 0.0552015 0.051037 38 3631 26 6.79088e+06 255968 678818. 2348.85 2.39 0.204615 0.179511 25966 169698 -1 2958 16 1335 3587 203647 44404 6.89761 6.89761 -163.806 -6.89761 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0316113 0.0278909 131 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 7.08 vpr 62.42 MiB -1 -1 0.33 18000 11 0.19 -1 -1 32636 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 30 32 224 256 1 162 79 17 17 289 -1 unnamed_device 23.6 MiB 0.46 883 7853 1940 5339 574 62.4 MiB 0.07 0.00 6.27294 -133.979 -6.27294 6.27294 0.68 0.000727704 0.000673504 0.0365258 0.0338473 38 2297 16 6.79088e+06 229024 678818. 2348.85 3.53 0.247846 0.213462 25966 169698 -1 1918 13 859 2398 122973 27825 5.57484 5.57484 -132.391 -5.57484 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0230238 0.020539 100 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 9.59 vpr 63.27 MiB -1 -1 0.44 19360 15 0.57 -1 -1 32972 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 351 383 1 260 89 17 17 289 -1 unnamed_device 24.3 MiB 1.03 1559 7217 1529 4884 804 63.3 MiB 0.09 0.00 9.47559 -189.1 -9.47559 9.47559 0.67 0.00111852 0.00103046 0.0453943 0.0419644 44 4250 22 6.79088e+06 336800 787024. 2723.27 4.74 0.378344 0.326392 27118 194962 -1 3350 21 1776 5388 286227 64424 8.2046 8.2046 -181.247 -8.2046 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.0485633 0.0426738 180 257 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 11.02 vpr 63.11 MiB -1 -1 0.36 18304 13 0.31 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 297 329 1 215 84 17 17 289 -1 unnamed_device 24.3 MiB 1.07 1327 11613 3037 7153 1423 63.1 MiB 0.12 0.00 8.35567 -179.275 -8.35567 8.35567 0.68 0.000949374 0.000878156 0.0639538 0.0591726 36 3892 45 6.79088e+06 269440 648988. 2245.63 6.60 0.297212 0.258786 25390 158009 -1 2951 20 1522 4208 254330 56298 7.26121 7.26121 -171.101 -7.26121 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0397923 0.0349071 139 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 7.75 vpr 62.41 MiB -1 -1 0.28 17768 11 0.13 -1 -1 32692 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 231 263 1 166 78 17 17 289 -1 unnamed_device 23.9 MiB 1.60 913 8544 1751 6687 106 62.4 MiB 0.08 0.00 6.71833 -138.755 -6.71833 6.71833 0.68 0.000728941 0.000675234 0.0403431 0.0374041 36 2680 22 6.79088e+06 188608 648988. 2245.63 3.14 0.249328 0.214559 25390 158009 -1 2048 22 1004 2482 144860 33236 5.57057 5.57057 -137.043 -5.57057 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0321826 0.0281707 95 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 6.72 vpr 63.19 MiB -1 -1 0.37 18448 12 0.29 -1 -1 32896 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 305 337 1 211 84 17 17 289 -1 unnamed_device 24.4 MiB 0.99 1275 5757 1099 4374 284 63.2 MiB 0.07 0.00 8.05812 -164.83 -8.05812 8.05812 0.69 0.000955372 0.000882946 0.0340212 0.0315068 40 3130 19 6.79088e+06 269440 706193. 2443.58 2.32 0.224241 0.193688 26254 175826 -1 2958 18 1330 4151 264505 58696 7.08896 7.08896 -157.183 -7.08896 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.0376882 0.0332003 145 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 7.24 vpr 62.54 MiB -1 -1 0.31 17980 12 0.19 -1 -1 32736 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 243 275 1 185 80 17 17 289 -1 unnamed_device 23.9 MiB 1.24 1063 10572 3521 4821 2230 62.5 MiB 0.10 0.00 7.07212 -150.92 -7.07212 7.07212 0.73 0.000793655 0.000735032 0.0513003 0.0475203 36 3409 40 6.79088e+06 215552 648988. 2245.63 2.80 0.198691 0.173648 25390 158009 -1 2673 17 1278 3195 206345 45647 6.29098 6.29098 -150.366 -6.29098 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0290259 0.0255668 111 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 7.60 vpr 62.26 MiB -1 -1 0.33 17972 12 0.18 -1 -1 32624 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 30 32 228 260 1 165 80 17 17 289 -1 unnamed_device 23.8 MiB 1.05 1004 11776 3311 6854 1611 62.3 MiB 0.10 0.00 7.78962 -153.98 -7.78962 7.78962 0.68 0.000744951 0.000690219 0.0539214 0.0499133 36 2647 28 6.79088e+06 242496 648988. 2245.63 3.43 0.215088 0.187833 25390 158009 -1 2204 16 865 2541 152000 33758 6.54507 6.54507 -146.067 -6.54507 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0261438 0.0230483 105 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 14.54 vpr 62.89 MiB -1 -1 0.38 18488 12 0.26 -1 -1 33312 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 275 307 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.73 1221 7770 1855 5075 840 62.9 MiB 0.09 0.00 7.43187 -140.251 -7.43187 7.43187 0.69 0.000903114 0.00083569 0.0448755 0.0414659 34 3578 29 6.79088e+06 309856 618332. 2139.56 9.56 0.373779 0.322294 25102 150614 -1 3006 15 1375 3970 281069 58660 6.41972 6.41972 -135.251 -6.41972 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0311527 0.0275071 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 9.01 vpr 63.16 MiB -1 -1 0.38 18456 13 0.35 -1 -1 32788 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 330 362 1 254 87 17 17 289 -1 unnamed_device 24.3 MiB 0.88 1359 13335 4246 7124 1965 63.2 MiB 0.14 0.00 8.15621 -168.312 -8.15621 8.15621 0.67 0.00103322 0.000956564 0.0760791 0.0704473 46 3494 23 6.79088e+06 309856 828058. 2865.25 4.66 0.424573 0.367411 27406 200422 -1 2798 17 1555 4022 186401 43603 7.04638 7.04638 -158.022 -7.04638 0 0 1.01997e+06 3529.29 0.27 0.05 0.14 -1 -1 0.27 0.0237393 0.0215035 159 236 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 9.55 vpr 62.98 MiB -1 -1 0.36 18536 12 0.26 -1 -1 33072 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 290 322 1 219 83 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1355 8543 2261 5601 681 63.0 MiB 0.10 0.00 8.04027 -168.911 -8.04027 8.04027 0.68 0.000930193 0.000860916 0.0479064 0.044353 46 3186 27 6.79088e+06 255968 828058. 2865.25 5.25 0.370947 0.319107 27406 200422 -1 2643 19 1391 4028 208150 46578 6.74888 6.74888 -158.158 -6.74888 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0376875 0.0332084 138 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 7.50 vpr 62.34 MiB -1 -1 0.34 18032 12 0.17 -1 -1 32800 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 214 246 1 159 80 17 17 289 -1 unnamed_device 23.6 MiB 1.95 863 11260 4224 5242 1794 62.3 MiB 0.10 0.00 7.26107 -147.208 -7.26107 7.26107 0.67 0.000695689 0.000644343 0.0483857 0.0448192 36 2331 19 6.79088e+06 215552 648988. 2245.63 2.59 0.166567 0.146014 25390 158009 -1 1967 15 845 2356 149699 33404 6.41977 6.41977 -139.921 -6.41977 0 0 828058. 2865.25 0.21 0.04 0.13 -1 -1 0.21 0.0139778 0.01267 93 120 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 7.34 vpr 62.97 MiB -1 -1 0.35 18252 12 0.24 -1 -1 32420 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 244 276 1 178 83 17 17 289 -1 unnamed_device 24.1 MiB 1.35 1108 3503 656 2559 288 63.0 MiB 0.04 0.00 7.09757 -147.836 -7.09757 7.09757 0.68 0.000793319 0.00072531 0.0183313 0.0170293 34 3269 40 6.79088e+06 269440 618332. 2139.56 2.82 0.179614 0.154729 25102 150614 -1 2705 20 1281 3569 221120 48983 6.56158 6.56158 -148.823 -6.56158 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.038187 0.0333375 112 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 6.57 vpr 63.21 MiB -1 -1 0.35 18408 11 0.18 -1 -1 32764 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 276 308 1 190 83 17 17 289 -1 unnamed_device 24.3 MiB 1.31 1054 9263 2245 5843 1175 63.2 MiB 0.09 0.00 6.88762 -135.169 -6.88762 6.88762 0.68 0.000868925 0.000804561 0.0482891 0.0447476 38 2945 19 6.79088e+06 282912 678818. 2348.85 2.14 0.216464 0.187615 25966 169698 -1 2413 18 1115 3680 189750 43063 5.99343 5.99343 -130.249 -5.99343 0 0 902133. 3121.57 0.23 0.08 0.10 -1 -1 0.23 0.0341129 0.0299552 126 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 7.59 vpr 62.53 MiB -1 -1 0.28 18052 11 0.19 -1 -1 32796 -1 -1 19 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 28 32 253 285 1 177 79 17 17 289 -1 unnamed_device 23.9 MiB 0.80 995 10050 2718 6209 1123 62.5 MiB 0.10 0.00 6.45019 -124.228 -6.45019 6.45019 0.69 0.000808933 0.00075033 0.0512864 0.0474612 38 2647 20 6.79088e+06 255968 678818. 2348.85 3.70 0.274965 0.236967 25966 169698 -1 2249 19 1131 3466 185142 40463 5.64548 5.64548 -120.405 -5.64548 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0332407 0.0291584 116 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 8.66 vpr 62.68 MiB -1 -1 0.34 18192 13 0.21 -1 -1 32432 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 235 267 1 171 79 17 17 289 -1 unnamed_device 23.9 MiB 1.89 969 10557 2812 6852 893 62.7 MiB 0.10 0.00 7.0265 -142.766 -7.0265 7.0265 0.68 0.00075801 0.00070191 0.0508551 0.0470898 38 2499 22 6.79088e+06 229024 678818. 2348.85 3.55 0.300496 0.259386 25966 169698 -1 2100 19 973 2722 134749 31327 6.40165 6.40165 -139.95 -6.40165 0 0 902133. 3121.57 0.26 0.06 0.15 -1 -1 0.26 0.0289263 0.0257078 108 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 9.47 vpr 62.91 MiB -1 -1 0.29 18148 12 0.21 -1 -1 32504 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 264 296 1 201 82 17 17 289 -1 unnamed_device 24.0 MiB 2.05 1167 9872 2780 5471 1621 62.9 MiB 0.10 0.00 7.31132 -167.014 -7.31132 7.31132 0.71 0.000843107 0.000779086 0.0511345 0.0471891 44 3012 17 6.79088e+06 242496 787024. 2723.27 4.07 0.29351 0.253789 27118 194962 -1 2549 15 1091 2747 160257 35526 6.38052 6.38052 -155.753 -6.38052 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0280855 0.024901 119 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 8.51 vpr 62.91 MiB -1 -1 0.36 18260 13 0.28 -1 -1 32812 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.07 988 9783 2758 5943 1082 62.9 MiB 0.10 0.00 8.18266 -152.572 -8.18266 8.18266 0.67 0.000902188 0.000832789 0.0517359 0.0477848 36 3345 28 6.79088e+06 282912 648988. 2245.63 4.11 0.336479 0.289584 25390 158009 -1 2527 19 1403 4134 243095 57317 7.38646 7.38646 -147.553 -7.38646 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0363732 0.0319708 136 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 6.93 vpr 63.04 MiB -1 -1 0.39 18488 14 0.25 -1 -1 32804 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 290 322 1 211 84 17 17 289 -1 unnamed_device 24.0 MiB 1.12 1245 13992 4430 7427 2135 63.0 MiB 0.16 0.00 8.45277 -175.285 -8.45277 8.45277 0.67 0.000936131 0.000862844 0.0806802 0.0744656 46 3019 19 6.79088e+06 269440 828058. 2865.25 2.39 0.264003 0.230755 27406 200422 -1 2515 18 1193 3569 171019 38649 7.28928 7.28928 -161.175 -7.28928 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0356605 0.0314153 132 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 10.39 vpr 62.88 MiB -1 -1 0.32 18876 14 0.30 -1 -1 32844 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 23.9 MiB 1.93 1219 5506 1194 3684 628 62.9 MiB 0.07 0.00 8.08149 -162.851 -8.08149 8.08149 0.68 0.000876103 0.00081255 0.0319223 0.0296174 36 3582 35 6.79088e+06 229024 648988. 2245.63 5.17 0.230053 0.198592 25390 158009 -1 2752 19 1307 3808 241835 52748 6.88531 6.88531 -154.809 -6.88531 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0356616 0.0313141 119 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 7.13 vpr 63.08 MiB -1 -1 0.40 18796 13 0.33 -1 -1 33152 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 296 328 1 224 85 17 17 289 -1 unnamed_device 24.3 MiB 1.31 1337 14779 4197 8584 1998 63.1 MiB 0.16 0.00 8.4678 -172.702 -8.4678 8.4678 0.67 0.000951092 0.000879265 0.0809981 0.074778 44 3481 24 6.79088e+06 282912 787024. 2723.27 2.20 0.232409 0.204428 27118 194962 -1 2871 17 1274 3846 210355 46091 7.55101 7.55101 -163.887 -7.55101 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0354974 0.0313181 145 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 11.96 vpr 62.36 MiB -1 -1 0.28 17928 13 0.18 -1 -1 32580 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 234 266 1 174 79 17 17 289 -1 unnamed_device 23.8 MiB 1.61 971 11402 3221 6944 1237 62.4 MiB 0.10 0.00 7.37867 -152.623 -7.37867 7.37867 0.68 0.00074852 0.000692962 0.0531787 0.0492395 30 3089 46 6.79088e+06 229024 556674. 1926.21 7.31 0.318511 0.27464 24526 138013 -1 2347 17 1030 2656 140863 32234 6.66267 6.66267 -147.632 -6.66267 0 0 706193. 2443.58 0.19 0.07 0.13 -1 -1 0.19 0.0277579 0.024406 104 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 7.36 vpr 63.15 MiB -1 -1 0.39 18756 13 0.41 -1 -1 32724 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 30 32 291 323 1 223 83 17 17 289 -1 unnamed_device 24.1 MiB 1.21 1226 6203 1393 4036 774 63.1 MiB 0.08 0.00 8.37399 -164.454 -8.37399 8.37399 0.70 0.00097633 0.000904932 0.0374934 0.034792 38 3383 21 6.79088e+06 282912 678818. 2348.85 2.48 0.229942 0.19914 25966 169698 -1 2692 19 1392 3870 198202 44973 7.30385 7.30385 -157.208 -7.30385 0 0 902133. 3121.57 0.31 0.09 0.14 -1 -1 0.31 0.0394093 0.0347043 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 18.55 vpr 62.98 MiB -1 -1 0.38 18468 14 0.30 -1 -1 32768 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 274 306 1 201 81 17 17 289 -1 unnamed_device 24.0 MiB 1.51 1220 8831 2339 5185 1307 63.0 MiB 0.10 0.00 8.43664 -177.857 -8.43664 8.43664 0.69 0.000893236 0.000827289 0.0489186 0.0452914 38 3412 29 6.79088e+06 229024 678818. 2348.85 13.53 0.396528 0.341393 25966 169698 -1 2715 23 1368 4033 233965 50066 7.75127 7.75127 -174.096 -7.75127 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0412516 0.0360161 127 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 9.22 vpr 62.82 MiB -1 -1 0.37 18316 13 0.22 -1 -1 32836 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 31 32 266 298 1 194 80 17 17 289 -1 unnamed_device 23.9 MiB 1.30 1018 10056 2882 5099 2075 62.8 MiB 0.10 0.00 7.45028 -151.18 -7.45028 7.45028 0.68 0.0008737 0.000809735 0.054141 0.0501753 36 3259 28 6.79088e+06 229024 648988. 2245.63 4.64 0.242382 0.210943 25390 158009 -1 2643 18 1429 3975 253181 55848 6.74528 6.74528 -150.387 -6.74528 0 0 828058. 2865.25 0.22 0.09 0.12 -1 -1 0.22 0.0328096 0.0288072 122 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 9.70 vpr 62.88 MiB -1 -1 0.32 18644 13 0.21 -1 -1 32872 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 30 32 266 298 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1131 8319 2355 4583 1381 62.9 MiB 0.08 0.00 7.49592 -149.558 -7.49592 7.49592 0.68 0.000872501 0.000809089 0.0422323 0.039149 36 3396 30 6.79088e+06 296384 648988. 2245.63 4.92 0.228686 0.198391 25390 158009 -1 2724 15 1255 3390 217318 47668 6.64352 6.64352 -144.455 -6.64352 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.02935 0.0259356 123 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 8.22 vpr 63.32 MiB -1 -1 0.37 18620 14 0.35 -1 -1 32788 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 310 342 1 229 85 17 17 289 -1 unnamed_device 24.5 MiB 1.21 1332 11803 3711 6311 1781 63.3 MiB 0.13 0.00 8.47332 -174.325 -8.47332 8.47332 0.69 0.00100783 0.00093412 0.0681564 0.0631053 40 3627 36 6.79088e+06 282912 706193. 2443.58 3.47 0.267185 0.234025 26254 175826 -1 3319 19 1685 5093 354961 76925 7.38651 7.38651 -167.314 -7.38651 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0399986 0.0351667 152 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 13.43 vpr 62.83 MiB -1 -1 0.39 18404 11 0.27 -1 -1 32748 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 29 32 262 294 1 201 83 17 17 289 -1 unnamed_device 23.9 MiB 1.59 1187 9803 3077 5789 937 62.8 MiB 0.10 0.00 7.32112 -142.904 -7.32112 7.32112 0.69 0.000868369 0.000805298 0.0510584 0.0472973 30 3094 33 6.79088e+06 296384 556674. 1926.21 8.56 0.309381 0.267882 24526 138013 -1 2563 15 1165 3347 160722 37461 6.46667 6.46667 -139.078 -6.46667 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.029914 0.0263897 134 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 10.75 vpr 62.15 MiB -1 -1 0.26 17748 13 0.19 -1 -1 32644 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 222 254 1 182 79 17 17 289 -1 unnamed_device 23.4 MiB 2.86 1035 5318 1067 4048 203 62.2 MiB 0.06 0.00 6.99248 -161.236 -6.99248 6.99248 0.69 0.000724213 0.000671297 0.0253672 0.0235032 34 3444 42 6.79088e+06 202080 618332. 2139.56 4.84 0.247574 0.212704 25102 150614 -1 2604 22 1228 2959 273887 81898 6.40514 6.40514 -163.936 -6.40514 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0315901 0.0276073 99 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 7.93 vpr 63.04 MiB -1 -1 0.38 18648 14 0.24 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 267 299 1 198 81 17 17 289 -1 unnamed_device 24.1 MiB 1.52 1250 4456 885 3313 258 63.0 MiB 0.06 0.00 8.38045 -174.115 -8.38045 8.38045 0.67 0.000866941 0.000803233 0.0263696 0.0244428 36 3265 43 6.79088e+06 229024 648988. 2245.63 3.21 0.23051 0.198214 25390 158009 -1 2720 18 1249 3337 202574 44403 7.34737 7.34737 -167.601 -7.34737 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0334618 0.0293757 122 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 22.67 vpr 63.20 MiB -1 -1 0.41 18920 15 0.40 -1 -1 32924 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 334 366 1 250 88 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1484 9253 2259 6050 944 63.2 MiB 0.11 0.00 8.87836 -189.569 -8.87836 8.87836 0.68 0.00107256 0.000992434 0.0550725 0.0508708 38 3870 29 6.79088e+06 323328 678818. 2348.85 17.57 0.494413 0.426471 25966 169698 -1 3149 20 1729 4589 229265 52252 7.67991 7.67991 -179.191 -7.67991 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.044371 0.0390148 164 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 6.22 vpr 62.25 MiB -1 -1 0.17 17960 11 0.17 -1 -1 32692 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 220 252 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 1.50 863 10916 3769 4696 2451 62.3 MiB 0.10 0.00 6.70603 -139.827 -6.70603 6.70603 0.69 0.000702462 0.000650561 0.0477911 0.0442937 36 2507 19 6.79088e+06 215552 648988. 2245.63 1.68 0.157591 0.137927 25390 158009 -1 2032 20 956 2486 140727 33215 5.82893 5.82893 -135.434 -5.82893 0 0 828058. 2865.25 0.23 0.07 0.13 -1 -1 0.23 0.0294142 0.0258142 97 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 9.30 vpr 62.45 MiB -1 -1 0.25 17916 12 0.17 -1 -1 33048 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 31 32 244 276 1 191 80 17 17 289 -1 unnamed_device 23.8 MiB 1.43 1084 6788 1723 4832 233 62.4 MiB 0.07 0.00 6.66627 -147.96 -6.66627 6.66627 0.72 0.000749264 0.000691069 0.0339295 0.0314496 44 3079 27 6.79088e+06 229024 787024. 2723.27 4.75 0.271755 0.233703 27118 194962 -1 2449 17 1212 3111 172440 38596 5.99337 5.99337 -141.516 -5.99337 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0287666 0.0252843 110 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 8.66 vpr 63.22 MiB -1 -1 0.35 18540 12 0.29 -1 -1 32728 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 300 332 1 218 83 17 17 289 -1 unnamed_device 24.5 MiB 1.11 1207 11783 4120 5343 2320 63.2 MiB 0.12 0.00 7.30286 -159.953 -7.30286 7.30286 0.68 0.000974644 0.000901968 0.0676891 0.0625909 44 3080 18 6.79088e+06 255968 787024. 2723.27 4.10 0.339212 0.293867 27118 194962 -1 2475 16 1292 3634 177016 41926 6.49812 6.49812 -147.002 -6.49812 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0351594 0.0311127 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 9.59 vpr 63.03 MiB -1 -1 0.36 18340 12 0.24 -1 -1 32952 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 271 303 1 210 83 17 17 289 -1 unnamed_device 24.1 MiB 1.70 1287 12503 3462 6480 2561 63.0 MiB 0.13 0.00 7.56098 -155.748 -7.56098 7.56098 0.71 0.000884868 0.000817455 0.0650373 0.0602118 40 3696 38 6.79088e+06 255968 706193. 2443.58 4.39 0.2684 0.233886 26254 175826 -1 3296 33 1534 4492 706599 301301 6.38062 6.38062 -154.578 -6.38062 0 0 926341. 3205.33 0.23 0.23 0.15 -1 -1 0.23 0.0538244 0.0466791 129 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 10.13 vpr 63.40 MiB -1 -1 0.37 18792 14 0.43 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 327 359 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.73 1355 14639 3834 9114 1691 63.4 MiB 0.16 0.00 8.8746 -178.899 -8.8746 8.8746 0.68 0.00106567 0.000984752 0.0872965 0.0806905 44 3437 21 6.79088e+06 296384 787024. 2723.27 4.70 0.430967 0.374812 27118 194962 -1 2971 17 1549 4664 242467 55768 7.78601 7.78601 -168.081 -7.78601 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0395381 0.0349635 167 233 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 9.14 vpr 62.80 MiB -1 -1 0.36 18268 12 0.20 -1 -1 32904 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 30 32 246 278 1 190 81 17 17 289 -1 unnamed_device 23.9 MiB 1.03 1159 7956 2272 5164 520 62.8 MiB 0.09 0.00 7.18863 -142.1 -7.18863 7.18863 0.68 0.000828464 0.000767607 0.0426387 0.0394984 46 2786 16 6.79088e+06 255968 828058. 2865.25 4.82 0.31521 0.271054 27406 200422 -1 2411 17 1025 3107 160837 35887 6.20488 6.20488 -133.311 -6.20488 0 0 1.01997e+06 3529.29 0.27 0.07 0.18 -1 -1 0.27 0.0312049 0.0275459 120 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 6.13 vpr 62.51 MiB -1 -1 0.31 17852 11 0.18 -1 -1 32716 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 27 32 219 251 1 164 78 17 17 289 -1 unnamed_device 24.0 MiB 1.50 723 8378 2042 5918 418 62.5 MiB 0.08 0.00 7.21752 -126.98 -7.21752 7.21752 0.68 0.000711293 0.000659356 0.038772 0.0358874 30 2453 31 6.79088e+06 255968 556674. 1926.21 1.63 0.137714 0.120577 24526 138013 -1 1858 17 1043 2825 131913 33470 6.28323 6.28323 -126.905 -6.28323 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0264567 0.0233113 103 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 9.83 vpr 63.55 MiB -1 -1 0.36 19040 13 0.41 -1 -1 32828 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 380 412 1 275 90 17 17 289 -1 unnamed_device 24.8 MiB 1.70 1657 9537 2520 6357 660 63.5 MiB 0.12 0.00 8.12297 -168.527 -8.12297 8.12297 0.68 0.00116687 0.00107932 0.0608747 0.0562964 40 4417 48 6.79088e+06 350272 706193. 2443.58 4.47 0.348248 0.30231 26254 175826 -1 4056 20 2002 5949 375778 80918 7.01061 7.01061 -160.57 -7.01061 0 0 926341. 3205.33 0.24 0.14 0.12 -1 -1 0.24 0.0525469 0.046617 189 286 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 6.79 vpr 62.89 MiB -1 -1 0.39 18516 14 0.23 -1 -1 32696 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 277 309 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.45 1072 7770 1789 5369 612 62.9 MiB 0.08 0.00 8.3779 -165.706 -8.3779 8.3779 0.68 0.000887898 0.000822729 0.0413719 0.0383606 36 3014 34 6.79088e+06 282912 648988. 2245.63 2.08 0.194858 0.169602 25390 158009 -1 2529 17 1112 2992 170582 39422 7.4761 7.4761 -162.537 -7.4761 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0329737 0.0290441 129 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 8.27 vpr 62.63 MiB -1 -1 0.34 18204 12 0.20 -1 -1 32416 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 229 261 1 176 82 17 17 289 -1 unnamed_device 24.1 MiB 1.27 1078 7914 1805 5400 709 62.6 MiB 0.08 0.00 7.28787 -159.969 -7.28787 7.28787 0.68 0.000749901 0.00069403 0.0361053 0.0334449 36 2782 20 6.79088e+06 242496 648988. 2245.63 3.85 0.190687 0.16584 25390 158009 -1 2255 16 1008 2402 136904 31819 6.14227 6.14227 -150.778 -6.14227 0 0 828058. 2865.25 0.27 0.07 0.14 -1 -1 0.27 0.0263751 0.0234359 107 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 10.42 vpr 62.93 MiB -1 -1 0.36 18204 13 0.27 -1 -1 32912 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 263 295 1 196 84 17 17 289 -1 unnamed_device 24.0 MiB 1.42 1065 10698 4067 5787 844 62.9 MiB 0.11 0.00 7.98061 -163.524 -7.98061 7.98061 0.67 0.000878292 0.000813821 0.054992 0.0509551 36 3909 46 6.79088e+06 269440 648988. 2245.63 5.74 0.359317 0.310019 25390 158009 -1 2692 17 1384 3771 259060 67340 6.79921 6.79921 -153.949 -6.79921 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0323235 0.0284632 128 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 8.61 vpr 63.26 MiB -1 -1 0.29 18840 13 0.34 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 321 353 1 242 86 17 17 289 -1 unnamed_device 24.3 MiB 1.45 1396 6890 1500 5037 353 63.3 MiB 0.09 0.00 7.43872 -154.496 -7.43872 7.43872 0.68 0.000799407 0.000732586 0.0359659 0.0331326 40 3737 36 6.79088e+06 309856 706193. 2443.58 3.66 0.265057 0.229115 26254 175826 -1 3682 27 2058 6214 669400 215172 6.83487 6.83487 -156.489 -6.83487 0 0 926341. 3205.33 0.24 0.21 0.15 -1 -1 0.24 0.0545296 0.047757 156 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 8.78 vpr 62.99 MiB -1 -1 0.36 18188 11 0.26 -1 -1 32852 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 287 319 1 199 84 17 17 289 -1 unnamed_device 23.9 MiB 1.30 1110 11613 3419 5918 2276 63.0 MiB 0.12 0.00 7.42892 -141.349 -7.42892 7.42892 0.67 0.000912719 0.000845129 0.0617361 0.0571347 44 2946 38 6.79088e+06 296384 787024. 2723.27 4.13 0.344898 0.298093 27118 194962 -1 2453 17 1258 3801 205331 47706 6.37282 6.37282 -135.511 -6.37282 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0337246 0.0296877 139 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 7.64 vpr 63.09 MiB -1 -1 0.37 18484 15 0.34 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 296 328 1 217 83 17 17 289 -1 unnamed_device 24.0 MiB 1.23 1158 4223 686 3480 57 63.1 MiB 0.06 0.00 8.41622 -176.296 -8.41622 8.41622 0.68 0.000956927 0.000885483 0.0264028 0.0244557 38 3611 49 6.79088e+06 255968 678818. 2348.85 3.02 0.223794 0.193012 25966 169698 -1 2680 20 1426 4396 232365 53103 7.21437 7.21437 -162.943 -7.21437 0 0 902133. 3121.57 0.24 0.10 0.15 -1 -1 0.24 0.0398023 0.034929 145 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 6.74 vpr 63.02 MiB -1 -1 0.40 18816 13 0.30 -1 -1 32748 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 285 317 1 216 84 17 17 289 -1 unnamed_device 24.0 MiB 1.27 1276 7221 1624 4993 604 63.0 MiB 0.08 0.00 7.85531 -170.15 -7.85531 7.85531 0.68 0.000934689 0.000865442 0.040693 0.0376911 38 3322 23 6.79088e+06 269440 678818. 2348.85 2.05 0.228425 0.197718 25966 169698 -1 2775 19 1297 3768 192177 43619 6.67391 6.67391 -156.024 -6.67391 0 0 902133. 3121.57 0.32 0.09 0.12 -1 -1 0.32 0.0376145 0.0330725 141 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 7.06 vpr 62.51 MiB -1 -1 0.17 17820 12 0.19 -1 -1 32588 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 239 271 1 187 80 17 17 289 -1 unnamed_device 23.9 MiB 1.61 941 12292 3647 6240 2405 62.5 MiB 0.12 0.00 7.84567 -154.348 -7.84567 7.84567 0.69 0.000923716 0.000856755 0.060279 0.0558787 36 3159 47 6.79088e+06 255968 648988. 2245.63 2.41 0.221159 0.193206 25390 158009 -1 2472 21 1302 3079 197616 45139 6.84606 6.84606 -149.622 -6.84606 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.032902 0.0288239 112 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 14.06 vpr 62.61 MiB -1 -1 0.28 18172 11 0.15 -1 -1 32736 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 235 267 1 177 79 17 17 289 -1 unnamed_device 23.9 MiB 2.10 1083 3966 758 3081 127 62.6 MiB 0.05 0.00 6.83947 -148.082 -6.83947 6.83947 0.68 0.000724541 0.000677514 0.0198614 0.0183931 34 3143 44 6.79088e+06 202080 618332. 2139.56 8.97 0.28189 0.241437 25102 150614 -1 2742 18 1192 2985 213870 46281 6.10302 6.10302 -148.662 -6.10302 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280154 0.0245803 99 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 9.29 vpr 63.05 MiB -1 -1 0.24 18300 13 0.31 -1 -1 32724 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 294 326 1 213 84 17 17 289 -1 unnamed_device 24.3 MiB 1.21 1276 7221 1604 4833 784 63.0 MiB 0.08 0.00 8.37916 -162.744 -8.37916 8.37916 0.68 0.000942165 0.000873074 0.040943 0.0379423 38 3408 30 6.79088e+06 282912 678818. 2348.85 4.84 0.383237 0.328874 25966 169698 -1 2832 17 1371 4127 228456 50332 7.06981 7.06981 -151.734 -7.06981 0 0 902133. 3121.57 0.24 0.09 0.14 -1 -1 0.24 0.0357775 0.0316305 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 5.79 vpr 62.23 MiB -1 -1 0.32 18048 10 0.15 -1 -1 33196 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.5 MiB 1.19 808 5722 1225 4266 231 62.2 MiB 0.06 0.00 6.21616 -120.606 -6.21616 6.21616 0.68 0.000709259 0.00065679 0.0272924 0.0253162 30 2732 29 6.79088e+06 229024 556674. 1926.21 1.70 0.123063 0.1073 24526 138013 -1 2028 15 966 2271 122606 29724 5.32762 5.32762 -121.477 -5.32762 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0237293 0.0209417 98 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 8.88 vpr 62.46 MiB -1 -1 0.24 18060 14 0.18 -1 -1 32584 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 239 271 1 183 82 17 17 289 -1 unnamed_device 23.8 MiB 2.52 1099 12720 3439 7948 1333 62.5 MiB 0.11 0.00 7.66942 -163.822 -7.66942 7.66942 0.77 0.000763469 0.000707274 0.0578429 0.0535539 36 3025 27 6.79088e+06 242496 648988. 2245.63 3.26 0.223663 0.195439 25390 158009 -1 2555 19 1122 2802 177721 38329 6.67042 6.67042 -157.002 -6.67042 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0306809 0.0269799 109 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 7.07 vpr 63.04 MiB -1 -1 0.39 18544 13 0.26 -1 -1 32740 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 266 298 1 209 82 17 17 289 -1 unnamed_device 24.0 MiB 1.83 1233 13432 4516 6489 2427 63.0 MiB 0.13 0.00 7.95965 -167.858 -7.95965 7.95965 0.68 0.000877397 0.000814943 0.0700861 0.0650749 44 3075 18 6.79088e+06 255968 787024. 2723.27 1.85 0.196213 0.173199 27118 194962 -1 2559 15 1227 3270 177857 39469 6.87761 6.87761 -158.31 -6.87761 0 0 997811. 3452.63 0.26 0.08 0.13 -1 -1 0.26 0.0293798 0.0259877 124 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 9.30 vpr 62.17 MiB -1 -1 0.32 18012 12 0.19 -1 -1 32624 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 31 32 225 257 1 171 80 17 17 289 -1 unnamed_device 23.7 MiB 2.94 973 6100 1428 4438 234 62.2 MiB 0.06 0.00 7.06748 -154.36 -7.06748 7.06748 0.67 0.000714426 0.000662013 0.028182 0.0261311 36 2757 20 6.79088e+06 229024 648988. 2245.63 3.32 0.17688 0.153381 25390 158009 -1 2293 14 959 2284 150234 32953 6.25178 6.25178 -149.108 -6.25178 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0232935 0.0206304 96 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 8.55 vpr 62.92 MiB -1 -1 0.36 18284 12 0.20 -1 -1 32772 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 288 320 1 202 82 17 17 289 -1 unnamed_device 23.9 MiB 1.78 1283 13432 3933 7023 2476 62.9 MiB 0.13 0.00 6.994 -152.251 -6.994 6.994 0.76 0.000898033 0.000830041 0.071764 0.0662867 38 3258 45 6.79088e+06 242496 678818. 2348.85 3.42 0.289564 0.251778 25966 169698 -1 2792 20 1289 3786 376231 129036 6.19713 6.19713 -147.635 -6.19713 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0373475 0.0326753 130 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 15.86 vpr 62.95 MiB -1 -1 0.41 18444 13 0.28 -1 -1 32708 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 31 32 282 314 1 210 83 17 17 289 -1 unnamed_device 24.2 MiB 1.00 1255 7103 1784 4908 411 62.9 MiB 0.08 0.00 7.93183 -164.51 -7.93183 7.93183 0.67 0.000919918 0.000852041 0.0402385 0.0372687 34 4320 48 6.79088e+06 269440 618332. 2139.56 11.50 0.412838 0.354288 25102 150614 -1 3155 18 1371 3899 244448 54181 6.88526 6.88526 -161.632 -6.88526 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0356676 0.0313562 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 8.05 vpr 62.39 MiB -1 -1 0.32 18108 11 0.20 -1 -1 32624 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 233 265 1 182 79 17 17 289 -1 unnamed_device 23.9 MiB 1.80 990 7515 1854 5471 190 62.4 MiB 0.08 0.00 6.41871 -149.746 -6.41871 6.41871 0.67 0.000753199 0.000697435 0.0362124 0.0335677 38 3026 47 6.79088e+06 202080 678818. 2348.85 3.11 0.219364 0.189956 25966 169698 -1 2413 21 1194 3250 178371 39313 5.48535 5.48535 -142.68 -5.48535 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0319412 0.0279772 105 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 10.76 vpr 62.61 MiB -1 -1 0.30 17920 13 0.26 -1 -1 32700 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 23.7 MiB 2.02 917 4473 833 3541 99 62.6 MiB 0.06 0.00 7.87829 -165.569 -7.87829 7.87829 0.70 0.000817958 0.000754792 0.0251284 0.0233088 38 3450 43 6.79088e+06 202080 678818. 2348.85 5.59 0.23063 0.199179 25966 169698 -1 2306 16 1127 3059 160954 38761 7.08558 7.08558 -157.83 -7.08558 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0294855 0.0260119 111 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 13.85 vpr 63.14 MiB -1 -1 0.27 18116 13 0.30 -1 -1 32844 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 285 317 1 216 82 17 17 289 -1 unnamed_device 24.1 MiB 1.15 1260 5600 1161 4083 356 63.1 MiB 0.08 0.00 7.71882 -168.307 -7.71882 7.71882 0.68 0.00091035 0.000843408 0.0335899 0.0311784 38 3737 30 6.79088e+06 242496 678818. 2348.85 9.39 0.37592 0.322918 25966 169698 -1 2953 18 1578 4251 227933 50692 6.83143 6.83143 -163.944 -6.83143 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0352763 0.0309991 135 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 8.72 vpr 62.73 MiB -1 -1 0.37 18324 11 0.22 -1 -1 33224 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 243 275 1 190 81 17 17 289 -1 unnamed_device 23.9 MiB 1.23 1127 10581 2985 5703 1893 62.7 MiB 0.10 0.00 6.61008 -134.136 -6.61008 6.61008 0.70 0.000801594 0.000742725 0.051665 0.0477378 36 3306 47 6.79088e+06 269440 648988. 2245.63 4.27 0.311399 0.268005 25390 158009 -1 2514 16 1106 3134 199443 43558 5.42613 5.42613 -127.322 -5.42613 0 0 828058. 2865.25 0.22 0.08 0.10 -1 -1 0.22 0.0285216 0.0251113 115 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 9.96 vpr 63.53 MiB -1 -1 0.40 18752 14 0.35 -1 -1 33324 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 318 350 1 240 87 17 17 289 -1 unnamed_device 24.7 MiB 1.09 1488 8535 2146 5424 965 63.5 MiB 0.10 0.00 8.76875 -186.498 -8.76875 8.76875 0.68 0.00102027 0.000943358 0.0496393 0.045958 38 3684 27 6.79088e+06 309856 678818. 2348.85 5.48 0.401839 0.346238 25966 169698 -1 2955 19 1551 4202 207936 47522 7.68406 7.68406 -173.86 -7.68406 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0411742 0.0362727 159 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 7.61 vpr 62.24 MiB -1 -1 0.24 17756 12 0.16 -1 -1 32628 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 222 254 1 185 81 17 17 289 -1 unnamed_device 23.8 MiB 2.67 1096 6031 1363 3831 837 62.2 MiB 0.06 0.00 6.47142 -144.358 -6.47142 6.47142 0.68 0.00071128 0.000659464 0.0272798 0.0253111 34 2909 32 6.79088e+06 242496 618332. 2139.56 2.03 0.161286 0.140029 25102 150614 -1 2421 17 1034 2357 151779 34030 5.9596 5.9596 -144.961 -5.9596 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0262176 0.0230909 105 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 10.03 vpr 63.04 MiB -1 -1 0.38 18852 13 0.29 -1 -1 32924 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 282 314 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.23 1347 4043 780 2904 359 63.0 MiB 0.05 0.00 8.02094 -165.56 -8.02094 8.02094 0.68 0.000908565 0.000841013 0.024074 0.022345 36 3935 48 6.79088e+06 255968 648988. 2245.63 5.55 0.246355 0.211949 25390 158009 -1 3170 18 1474 4112 257378 55889 6.75652 6.75652 -156.97 -6.75652 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0352885 0.0309366 134 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 7.87 vpr 62.43 MiB -1 -1 0.26 18180 13 0.18 -1 -1 32576 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 238 270 1 179 82 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1085 7914 1906 5077 931 62.4 MiB 0.08 0.00 7.51507 -164.29 -7.51507 7.51507 0.67 0.000757917 0.000698763 0.0365758 0.0338048 36 2804 28 6.79088e+06 242496 648988. 2245.63 3.50 0.232558 0.200617 25390 158009 -1 2373 16 961 2488 145746 32856 6.54507 6.54507 -157.043 -6.54507 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0265495 0.0234344 105 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 9.88 vpr 62.92 MiB -1 -1 0.37 18524 12 0.22 -1 -1 32784 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 269 301 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 1.44 1205 12711 3448 7705 1558 62.9 MiB 0.12 0.00 7.30358 -162.225 -7.30358 7.30358 0.67 0.000882298 0.000815892 0.0649846 0.060116 36 3744 48 6.79088e+06 269440 648988. 2245.63 5.14 0.372466 0.321206 25390 158009 -1 2886 17 1210 3824 230778 49498 6.19718 6.19718 -153.421 -6.19718 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0331 0.0291055 128 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 10.13 vpr 63.36 MiB -1 -1 0.43 19236 15 0.47 -1 -1 33216 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 1.05 1525 10583 2684 6530 1369 63.4 MiB 0.13 0.00 9.41018 -195.78 -9.41018 9.41018 0.68 0.00114823 0.00105001 0.0660174 0.0607827 44 4431 22 6.79088e+06 336800 787024. 2723.27 5.25 0.419565 0.363013 27118 194962 -1 3549 28 2405 7622 591122 195980 8.89715 8.89715 -187.599 -8.89715 0 0 997811. 3452.63 0.26 0.20 0.18 -1 -1 0.26 0.0610228 0.0532678 183 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 8.41 vpr 62.07 MiB -1 -1 0.29 17644 10 0.09 -1 -1 32424 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63560 30 32 174 206 1 132 73 17 17 289 -1 unnamed_device 23.5 MiB 1.74 569 10257 4278 5714 265 62.1 MiB 0.08 0.00 4.82946 -112.742 -4.82946 4.82946 0.67 0.000571717 0.000530949 0.0405131 0.0376692 36 2039 50 6.79088e+06 148192 648988. 2245.63 3.77 0.214035 0.184895 25390 158009 -1 1387 19 709 1580 96839 23573 4.50726 4.50726 -111.085 -4.50726 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0221828 0.0194057 64 86 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 7.03 vpr 62.45 MiB -1 -1 0.27 18012 13 0.18 -1 -1 32640 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 23.9 MiB 1.35 1029 5825 1231 4146 448 62.4 MiB 0.06 0.00 7.87321 -160.437 -7.87321 7.87321 0.67 0.000746252 0.000692635 0.028647 0.0265927 34 2956 35 6.79088e+06 229024 618332. 2139.56 2.63 0.161169 0.139928 25102 150614 -1 2528 20 1164 2881 175744 40261 7.08552 7.08552 -160.21 -7.08552 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0308143 0.027062 103 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 10.42 vpr 62.80 MiB -1 -1 0.24 18056 12 0.19 -1 -1 32756 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 264 296 1 198 81 17 17 289 -1 unnamed_device 24.0 MiB 1.95 1009 12506 4599 6333 1574 62.8 MiB 0.12 0.00 7.16042 -155.076 -7.16042 7.16042 0.67 0.000846834 0.000784213 0.0636979 0.059008 38 3077 27 6.79088e+06 229024 678818. 2348.85 5.39 0.341043 0.29473 25966 169698 -1 2467 16 1204 3071 181392 41122 6.24752 6.24752 -151.183 -6.24752 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0296557 0.0261222 115 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 5.34 vpr 62.00 MiB -1 -1 0.27 17720 9 0.13 -1 -1 32592 -1 -1 19 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 25 32 183 215 1 134 76 17 17 289 -1 unnamed_device 23.3 MiB 0.91 748 10796 2964 6480 1352 62.0 MiB 0.08 0.00 4.9582 -97.454 -4.9582 4.9582 0.68 0.000606661 0.000563493 0.0433642 0.0402688 28 2171 21 6.79088e+06 255968 531479. 1839.03 1.58 0.118158 0.104091 23950 126010 -1 1961 17 814 2175 142079 32307 4.5107 4.5107 -100.849 -4.5107 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0221851 0.0194401 86 110 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 7.35 vpr 62.95 MiB -1 -1 0.39 18488 12 0.28 -1 -1 32740 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 300 332 1 227 85 17 17 289 -1 unnamed_device 24.1 MiB 1.24 1301 7897 1769 4878 1250 62.9 MiB 0.09 0.00 7.57033 -160.892 -7.57033 7.57033 0.68 0.000951625 0.000881362 0.0442211 0.0410298 44 3563 24 6.79088e+06 282912 787024. 2723.27 2.68 0.203837 0.177605 27118 194962 -1 2921 15 1380 3916 214785 48155 6.67037 6.67037 -154.996 -6.67037 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0363073 0.0324272 140 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 8.95 vpr 63.18 MiB -1 -1 0.41 18900 13 0.34 -1 -1 32676 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 290 322 1 215 87 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1277 8535 2081 5648 806 63.2 MiB 0.10 0.00 8.4853 -176.747 -8.4853 8.4853 0.67 0.000948394 0.000878927 0.0463948 0.0428911 34 4014 42 6.79088e+06 323328 618332. 2139.56 3.96 0.270514 0.235223 25102 150614 -1 3168 17 1357 3943 256389 56599 7.3039 7.3039 -168.531 -7.3039 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0353564 0.0311352 146 199 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 7.22 vpr 63.13 MiB -1 -1 0.21 18220 1 0.03 -1 -1 30192 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 24.2 MiB 3.17 992 16773 5017 8446 3310 63.1 MiB 0.16 0.00 5.50182 -160.116 -5.50182 5.50182 0.67 0.000704382 0.000654708 0.0611061 0.0568403 30 2790 25 6.87369e+06 363320 556674. 1926.21 1.09 0.147763 0.130886 25186 138497 -1 2050 21 1426 2321 167960 54826 4.58385 4.58385 -149.725 -4.58385 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0284216 0.0247111 142 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.93 vpr 63.14 MiB -1 -1 0.20 18156 1 0.03 -1 -1 30476 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 24.2 MiB 2.69 985 11804 3116 7588 1100 63.1 MiB 0.12 0.00 4.6679 -136.949 -4.6679 4.6679 0.67 0.000698711 0.000649229 0.0461198 0.0428568 38 2075 19 6.87369e+06 335372 678818. 2348.85 3.34 0.272743 0.235149 26626 170182 -1 1843 21 1475 2215 137639 32758 3.98296 3.98296 -132.597 -3.98296 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0283609 0.0246534 141 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 7.30 vpr 62.76 MiB -1 -1 0.12 18148 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.2 MiB 3.08 979 10873 2754 7440 679 62.8 MiB 0.12 0.00 4.36457 -122.364 -4.36457 4.36457 0.71 0.000627398 0.000583509 0.0422022 0.0390559 34 2557 26 6.87369e+06 293451 618332. 2139.56 1.44 0.169366 0.14725 25762 151098 -1 2008 23 1430 1899 131183 31865 3.84576 3.84576 -123.257 -3.84576 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0268597 0.023239 124 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.41 vpr 62.70 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30276 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.1 MiB 1.11 974 13557 4041 7216 2300 62.7 MiB 0.12 0.00 4.63038 -128.348 -4.63038 4.63038 0.68 0.000639486 0.000594448 0.0447665 0.0416077 34 2407 26 6.87369e+06 405241 618332. 2139.56 1.47 0.171579 0.149198 25762 151098 -1 1961 22 1401 2565 182639 41805 3.8767 3.8767 -124.544 -3.8767 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0264709 0.022935 124 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.07 vpr 63.13 MiB -1 -1 0.23 18436 1 0.03 -1 -1 30416 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 24.2 MiB 1.55 1051 17023 5465 9028 2530 63.1 MiB 0.16 0.00 4.52512 -133.724 -4.52512 4.52512 0.67 0.000684116 0.000635964 0.059303 0.0550331 34 2741 27 6.87369e+06 377294 618332. 2139.56 1.60 0.196473 0.171819 25762 151098 -1 2360 24 1773 3437 275466 61389 3.9127 3.9127 -134.692 -3.9127 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0301255 0.0260697 131 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.90 vpr 63.29 MiB -1 -1 0.22 18268 1 0.03 -1 -1 30236 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1058 17134 5267 9607 2260 63.3 MiB 0.15 0.00 3.34527 -120.073 -3.34527 3.34527 0.70 0.000714989 0.000663366 0.0597775 0.0554787 32 2826 21 6.87369e+06 419215 586450. 2029.24 2.61 0.229859 0.200213 25474 144626 -1 2263 21 1465 2393 192469 43839 3.15781 3.15781 -124.682 -3.15781 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0304034 0.0262988 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.19 vpr 62.47 MiB -1 -1 0.17 17948 1 0.03 -1 -1 30712 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 23.9 MiB 2.08 666 11532 3128 7372 1032 62.5 MiB 0.09 0.00 3.87934 -105.571 -3.87934 3.87934 0.68 0.000556649 0.000518523 0.0404582 0.0376762 34 1687 23 6.87369e+06 265503 618332. 2139.56 1.34 0.152608 0.132608 25762 151098 -1 1454 23 1227 2083 146465 34887 2.92996 2.92996 -102.338 -2.92996 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0238248 0.020563 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.09 vpr 62.74 MiB -1 -1 0.22 17776 1 0.03 -1 -1 30120 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 24.0 MiB 0.87 977 15431 4363 8928 2140 62.7 MiB 0.13 0.00 3.48795 -106.181 -3.48795 3.48795 0.68 0.000700939 0.000646079 0.0450429 0.0418435 30 2176 24 6.87369e+06 447163 556674. 1926.21 2.43 0.18545 0.161224 25186 138497 -1 1868 21 942 1689 101117 22863 2.58436 2.58436 -98.3935 -2.58436 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0237115 0.0205265 119 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.66 vpr 62.88 MiB -1 -1 0.21 18360 1 0.02 -1 -1 30100 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 24.1 MiB 2.44 888 12980 4535 6374 2071 62.9 MiB 0.12 0.00 3.31297 -114.045 -3.31297 3.31297 0.68 0.000635324 0.000590703 0.0500618 0.0465036 34 2335 21 6.87369e+06 237555 618332. 2139.56 1.40 0.172464 0.150318 25762 151098 -1 2046 18 1239 1803 154821 34852 3.09961 3.09961 -119.68 -3.09961 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0230106 0.0199396 113 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.75 vpr 62.80 MiB -1 -1 0.22 17976 1 0.03 -1 -1 30144 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.56 870 10400 2388 6951 1061 62.8 MiB 0.10 0.00 3.96554 -131.116 -3.96554 3.96554 0.68 0.000624265 0.000579266 0.0394648 0.0367205 34 2168 22 6.87369e+06 223581 618332. 2139.56 1.37 0.155099 0.134941 25762 151098 -1 1797 23 1331 2222 162159 37386 3.08026 3.08026 -125.632 -3.08026 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0269283 0.0233443 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.99 vpr 62.73 MiB -1 -1 0.24 18428 1 0.03 -1 -1 30380 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 23.8 MiB 2.89 661 6718 1392 5000 326 62.7 MiB 0.07 0.00 3.87398 -111.275 -3.87398 3.87398 0.67 0.000615578 0.000572582 0.0267068 0.0248695 34 1788 24 6.87369e+06 223581 618332. 2139.56 1.31 0.146631 0.126577 25762 151098 -1 1485 22 1074 1734 115497 27750 2.96596 2.96596 -108.426 -2.96596 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0254329 0.022018 98 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.62 vpr 62.50 MiB -1 -1 0.23 17956 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.8 MiB 2.41 808 7606 1773 5149 684 62.5 MiB 0.08 0.00 3.6704 -113.65 -3.6704 3.6704 0.76 0.000591743 0.000550841 0.0281174 0.0262217 34 2163 24 6.87369e+06 237555 618332. 2139.56 1.33 0.143986 0.124431 25762 151098 -1 1798 17 1055 1503 107396 25939 3.04261 3.04261 -113.8 -3.04261 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0203656 0.0177686 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.12 vpr 63.17 MiB -1 -1 0.20 18128 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 3.56 843 12183 3137 7426 1620 63.2 MiB 0.13 0.00 4.18499 -131.201 -4.18499 4.18499 0.73 0.000696814 0.000648352 0.0453251 0.0420708 36 2671 41 6.87369e+06 321398 648988. 2245.63 2.65 0.202951 0.176481 26050 158493 -1 2062 22 1974 3012 214596 52850 3.52851 3.52851 -128.635 -3.52851 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0289563 0.0251813 142 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.80 vpr 63.20 MiB -1 -1 0.24 18208 1 0.03 -1 -1 30348 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.3 MiB 2.18 910 14567 3971 8883 1713 63.2 MiB 0.08 0.00 4.81568 -140.871 -4.81568 4.81568 0.71 0.00031632 0.000290659 0.0229807 0.0211161 30 2435 22 6.87369e+06 433189 556674. 1926.21 0.80 0.094068 0.0818193 25186 138497 -1 1932 21 1346 2179 134417 31060 3.80436 3.80436 -134.289 -3.80436 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0281507 0.0243815 133 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.40 vpr 62.39 MiB -1 -1 0.21 18004 1 0.02 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 23.8 MiB 1.85 780 9368 2426 5947 995 62.4 MiB 0.08 0.00 3.03342 -94.7718 -3.03342 3.03342 0.68 0.000548571 0.000510279 0.0311932 0.029013 32 2012 24 6.87369e+06 265503 586450. 2029.24 0.85 0.0922037 0.0809222 25474 144626 -1 1689 24 1222 1996 155355 35631 2.89726 2.89726 -98.8151 -2.89726 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0262359 0.0227835 94 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 7.83 vpr 63.33 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30452 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 24.4 MiB 2.03 1098 16273 6888 8626 759 63.3 MiB 0.15 0.00 3.7276 -123.933 -3.7276 3.7276 0.68 0.000719386 0.000667704 0.0584609 0.0539238 34 2949 21 6.87369e+06 335372 618332. 2139.56 2.88 0.232186 0.201385 25762 151098 -1 2326 21 1772 3071 217549 51302 3.27511 3.27511 -125.274 -3.27511 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0289735 0.0251131 135 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.98 vpr 63.13 MiB -1 -1 0.25 18336 1 0.03 -1 -1 30156 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 24.1 MiB 3.67 1093 10315 2797 6648 870 63.1 MiB 0.11 0.00 4.18499 -137.545 -4.18499 4.18499 0.68 0.00066441 0.000614832 0.0401547 0.037318 34 2792 22 6.87369e+06 293451 618332. 2139.56 1.44 0.173376 0.150855 25762 151098 -1 2280 21 1588 2312 178533 39644 3.21661 3.21661 -126.358 -3.21661 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0266242 0.0231615 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.17 vpr 62.88 MiB -1 -1 0.20 18296 1 0.03 -1 -1 30444 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 24.1 MiB 2.28 867 16445 5131 9259 2055 62.9 MiB 0.13 0.00 2.85191 -106.24 -2.85191 2.85191 0.68 0.000644247 0.000597256 0.0530554 0.0491716 30 1915 21 6.87369e+06 391268 556674. 1926.21 2.04 0.211713 0.184099 25186 138497 -1 1643 20 1156 1984 111966 26084 1.93252 1.93252 -95.358 -1.93252 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0248324 0.0215173 109 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.21 vpr 62.34 MiB -1 -1 0.21 18004 1 0.03 -1 -1 30128 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 23.6 MiB 0.76 548 9196 3125 4759 1312 62.3 MiB 0.07 0.00 2.38778 -80.5436 -2.38778 2.38778 0.67 0.000495633 0.000461375 0.030218 0.0281211 30 1363 23 6.87369e+06 195634 556674. 1926.21 0.78 0.0904064 0.078897 25186 138497 -1 1117 18 558 803 49612 11779 2.06882 2.06882 -84.1472 -2.06882 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0175915 0.0152437 71 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.49 vpr 62.54 MiB -1 -1 0.22 18172 1 0.03 -1 -1 30576 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 3.64 940 10406 3145 6506 755 62.5 MiB 0.10 0.00 5.00887 -149.776 -5.00887 5.00887 0.69 0.000617366 0.000574457 0.0379418 0.0352539 30 2234 22 6.87369e+06 265503 556674. 1926.21 2.05 0.186554 0.161147 25186 138497 -1 1813 18 871 1255 70103 17136 3.44261 3.44261 -132.101 -3.44261 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0231751 0.0201729 116 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.03 vpr 63.13 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30372 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 24.2 MiB 1.24 1070 16515 4276 10581 1658 63.1 MiB 0.13 0.00 4.18253 -136.483 -4.18253 4.18253 0.68 0.000655978 0.000603576 0.0521776 0.0483573 32 2544 27 6.87369e+06 489084 586450. 2029.24 0.95 0.138962 0.12251 25474 144626 -1 2155 19 1439 2152 176436 39627 3.6371 3.6371 -132.704 -3.6371 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0255905 0.0222301 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 7.50 vpr 63.23 MiB -1 -1 0.26 18172 1 0.03 -1 -1 30320 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 24.3 MiB 3.12 1162 10481 3111 6377 993 63.2 MiB 0.11 0.00 4.31025 -134.645 -4.31025 4.31025 0.68 0.000725445 0.000672474 0.042461 0.0393572 34 2905 21 6.87369e+06 307425 618332. 2139.56 1.47 0.183818 0.159778 25762 151098 -1 2438 21 1694 2671 225483 49755 3.71046 3.71046 -133.687 -3.71046 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0290667 0.0252763 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.41 vpr 62.30 MiB -1 -1 0.20 18052 1 0.02 -1 -1 30608 -1 -1 17 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 23.8 MiB 1.82 352 9555 3939 4800 816 62.3 MiB 0.06 0.00 2.60613 -72.4296 -2.60613 2.60613 0.67 0.000427364 0.00039694 0.0271197 0.0252037 30 1310 31 6.87369e+06 237555 556674. 1926.21 0.86 0.0841033 0.0735524 25186 138497 -1 893 26 691 1039 62560 16373 2.27547 2.27547 -71.0198 -2.27547 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0204564 0.0176048 67 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.45 vpr 62.67 MiB -1 -1 0.22 17716 1 0.03 -1 -1 30272 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.8 MiB 1.27 1029 10263 2694 6379 1190 62.7 MiB 0.10 0.00 4.63338 -131.361 -4.63338 4.63338 0.67 0.000616075 0.000572916 0.0349541 0.0324691 34 2410 23 6.87369e+06 321398 618332. 2139.56 1.36 0.156571 0.13564 25762 151098 -1 2071 24 1472 2681 184281 41722 3.7964 3.7964 -126.792 -3.7964 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0274713 0.0237485 119 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.81 vpr 62.06 MiB -1 -1 0.20 17408 1 0.02 -1 -1 29992 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.4 MiB 0.63 415 9836 3792 4975 1069 62.1 MiB 0.06 0.00 2.58823 -76.4648 -2.58823 2.58823 0.68 0.000419602 0.000388928 0.0270038 0.0250465 34 1145 25 6.87369e+06 167686 618332. 2139.56 2.49 0.145717 0.125304 25762 151098 -1 885 16 568 649 42105 11703 1.91852 1.91852 -73.9266 -1.91852 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0139942 0.0122172 65 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.86 vpr 62.70 MiB -1 -1 0.18 17884 1 0.03 -1 -1 30008 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.1 MiB 1.00 1004 15430 3940 9856 1634 62.7 MiB 0.13 0.00 4.64012 -131.611 -4.64012 4.64012 0.68 0.000636394 0.000591511 0.0479135 0.0445233 32 2393 20 6.87369e+06 419215 586450. 2029.24 0.91 0.131351 0.116122 25474 144626 -1 1946 21 1053 1702 124165 28883 3.7541 3.7541 -122.23 -3.7541 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0256998 0.0223166 120 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.13 vpr 62.88 MiB -1 -1 0.18 17764 1 0.03 -1 -1 30468 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 0.92 1073 17591 5429 9856 2306 62.9 MiB 0.15 0.00 3.58631 -114.754 -3.58631 3.58631 0.68 0.000633839 0.000589456 0.0534782 0.0496494 34 2373 20 6.87369e+06 433189 618332. 2139.56 1.34 0.172547 0.151042 25762 151098 -1 2028 19 1130 2110 126575 29957 2.92126 2.92126 -109.204 -2.92126 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0238248 0.0208172 130 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.16 vpr 63.07 MiB -1 -1 0.18 18360 1 0.03 -1 -1 30424 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 24.1 MiB 1.66 1004 15824 5333 7131 3360 63.1 MiB 0.13 0.00 4.74578 -132.154 -4.74578 4.74578 0.68 0.000679159 0.000630318 0.0540281 0.0501897 34 2495 24 6.87369e+06 391268 618332. 2139.56 1.64 0.180509 0.157849 25762 151098 -1 2006 23 1429 2568 184000 43320 3.81646 3.81646 -126.442 -3.81646 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0291877 0.0252525 131 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.18 vpr 62.45 MiB -1 -1 0.23 17944 1 0.03 -1 -1 30112 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 23.8 MiB 1.08 894 11776 3852 5929 1995 62.4 MiB 0.10 0.00 3.01142 -109.398 -3.01142 3.01142 0.68 0.000599953 0.000557996 0.0430425 0.0400158 34 1983 21 6.87369e+06 223581 618332. 2139.56 1.31 0.158586 0.13806 25762 151098 -1 1738 19 935 1554 112505 25755 2.78496 2.78496 -110.254 -2.78496 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0240186 0.020922 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 6.53 vpr 62.51 MiB -1 -1 0.21 17960 1 0.03 -1 -1 30184 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 23.9 MiB 1.19 686 13738 3515 8195 2028 62.5 MiB 0.11 0.00 3.22907 -99.998 -3.22907 3.22907 0.68 0.000565102 0.000526 0.0422447 0.0392769 32 1791 21 6.87369e+06 363320 586450. 2029.24 2.53 0.181196 0.156751 25474 144626 -1 1519 21 966 1551 138665 31664 3.03361 3.03361 -102.154 -3.03361 0 0 744469. 2576.02 0.20 0.06 0.13 -1 -1 0.20 0.0224106 0.0193687 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.78 vpr 62.54 MiB -1 -1 0.18 17948 1 0.03 -1 -1 30120 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 23.8 MiB 1.16 760 11698 3432 6949 1317 62.5 MiB 0.10 0.00 3.46101 -100.103 -3.46101 3.46101 0.68 0.000554332 0.000515978 0.0406475 0.0378532 32 2253 27 6.87369e+06 251529 586450. 2029.24 0.93 0.110831 0.0973545 25474 144626 -1 1755 23 1204 2187 187934 42549 3.07756 3.07756 -104.944 -3.07756 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0241065 0.0207758 95 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 6.76 vpr 62.34 MiB -1 -1 0.20 17652 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.7 MiB 1.35 766 11106 2788 6396 1922 62.3 MiB 0.09 0.00 3.84524 -116.411 -3.84524 3.84524 0.68 0.000563594 0.000524364 0.0375314 0.0348968 34 1889 24 6.87369e+06 237555 618332. 2139.56 2.63 0.174361 0.150832 25762 151098 -1 1686 21 1144 1880 136805 31506 2.90826 2.90826 -111.82 -2.90826 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0230891 0.0200567 101 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.97 vpr 62.57 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30156 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 23.9 MiB 0.92 707 5831 1162 4318 351 62.6 MiB 0.06 0.00 3.52097 -104.958 -3.52097 3.52097 0.73 0.000588057 0.00054797 0.0188054 0.0174813 26 2268 25 6.87369e+06 363320 503264. 1741.40 2.24 0.158031 0.135507 24322 120374 -1 1908 24 1432 2460 211794 50111 3.34816 3.34816 -113.514 -3.34816 0 0 618332. 2139.56 0.17 0.08 0.11 -1 -1 0.17 0.0264176 0.0228381 102 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.10 vpr 62.78 MiB -1 -1 0.23 17972 1 0.03 -1 -1 30388 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 23.9 MiB 2.72 703 8591 2001 5849 741 62.8 MiB 0.08 0.00 3.08002 -96.8082 -3.08002 3.08002 0.68 0.000601655 0.000559454 0.0288173 0.0267798 32 2079 29 6.87369e+06 349346 586450. 2029.24 2.59 0.176386 0.151656 25474 144626 -1 1673 21 1230 1792 142577 34533 2.40547 2.40547 -97.8315 -2.40547 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0238204 0.0205642 106 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 7.13 vpr 63.22 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30560 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 24.2 MiB 3.18 1195 18160 4666 11113 2381 63.2 MiB 0.16 0.00 4.16289 -124.14 -4.16289 4.16289 0.71 0.000746007 0.000694158 0.0570407 0.0529152 32 3261 23 6.87369e+06 558954 586450. 2029.24 0.98 0.150215 0.132827 25474 144626 -1 2610 22 1638 3229 246794 56458 4.1243 4.1243 -129.916 -4.1243 0 0 744469. 2576.02 0.20 0.10 0.14 -1 -1 0.20 0.0310284 0.0270493 156 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.28 vpr 63.30 MiB -1 -1 0.20 18304 1 0.03 -1 -1 30276 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 2.83 1033 17476 4934 10272 2270 63.3 MiB 0.16 0.00 3.9888 -134.401 -3.9888 3.9888 0.68 0.000756573 0.000703205 0.0576117 0.0534326 34 2352 21 6.87369e+06 531006 618332. 2139.56 1.41 0.201459 0.17592 25762 151098 -1 2021 19 1552 2502 154132 36441 3.07746 3.07746 -120.734 -3.07746 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.0247457 0.0218959 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.20 vpr 62.62 MiB -1 -1 0.22 18252 1 0.03 -1 -1 30100 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.9 MiB 2.97 827 12506 3647 6930 1929 62.6 MiB 0.11 0.00 4.12999 -122.522 -4.12999 4.12999 0.68 0.000590156 0.000549401 0.0441175 0.0410609 34 2129 21 6.87369e+06 251529 618332. 2139.56 1.44 0.158351 0.137893 25762 151098 -1 1834 20 1281 1931 143544 34065 3.45621 3.45621 -119.844 -3.45621 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0228831 0.0198592 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.95 vpr 63.20 MiB -1 -1 0.21 18204 1 0.03 -1 -1 30396 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 24.3 MiB 2.47 986 12959 4044 6276 2639 63.2 MiB 0.13 0.00 3.77586 -121.787 -3.77586 3.77586 0.68 0.000724787 0.0006733 0.0496512 0.046134 34 2740 27 6.87369e+06 363320 618332. 2139.56 1.62 0.197711 0.172343 25762 151098 -1 2242 22 1647 2835 204711 47759 3.12956 3.12956 -121.716 -3.12956 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0300106 0.0260471 136 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.26 vpr 63.44 MiB -1 -1 0.26 18300 1 0.04 -1 -1 30308 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 24.6 MiB 4.23 1219 10033 2675 6590 768 63.4 MiB 0.11 0.00 5.67608 -170.361 -5.67608 5.67608 0.68 0.000722478 0.000670848 0.0395092 0.036644 34 3445 48 6.87369e+06 349346 618332. 2139.56 2.04 0.202387 0.175197 25762 151098 -1 2683 23 2323 3428 293108 64897 4.86379 4.86379 -170.23 -4.86379 0 0 787024. 2723.27 0.23 0.10 0.13 -1 -1 0.23 0.0313154 0.0271942 159 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 8.57 vpr 63.38 MiB -1 -1 0.21 18120 1 0.03 -1 -1 30336 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 24.4 MiB 4.15 920 11145 2994 7135 1016 63.4 MiB 0.12 0.00 5.24874 -155.932 -5.24874 5.24874 0.68 0.000735526 0.000680931 0.0431513 0.0400527 34 2724 30 6.87369e+06 377294 618332. 2139.56 1.48 0.161389 0.140879 25762 151098 -1 2074 21 1789 2709 186218 47251 4.63715 4.63715 -156.683 -4.63715 0 0 787024. 2723.27 0.22 0.08 0.15 -1 -1 0.22 0.0295929 0.025709 152 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.61 vpr 63.31 MiB -1 -1 0.26 18148 1 0.03 -1 -1 30396 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 24.4 MiB 2.75 890 9058 2302 6004 752 63.3 MiB 0.10 0.00 4.13563 -126.898 -4.13563 4.13563 0.67 0.000702066 0.000653405 0.0345729 0.0321418 32 3034 27 6.87369e+06 349346 586450. 2029.24 0.98 0.122263 0.10712 25474 144626 -1 2241 19 1631 2733 219947 53339 3.29421 3.29421 -122.325 -3.29421 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0259918 0.0226546 131 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 7.11 vpr 62.74 MiB -1 -1 0.20 18328 1 0.03 -1 -1 30352 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 24.2 MiB 2.72 1007 14907 5613 7321 1973 62.7 MiB 0.13 0.00 4.35225 -119.373 -4.35225 4.35225 0.68 0.000622218 0.000578949 0.0530697 0.0492775 34 2610 26 6.87369e+06 279477 618332. 2139.56 1.47 0.174865 0.152682 25762 151098 -1 2183 24 1390 2007 154868 35799 3.95806 3.95806 -125.287 -3.95806 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0276729 0.0239482 119 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.88 vpr 63.41 MiB -1 -1 0.28 18524 1 0.03 -1 -1 30376 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 24.5 MiB 2.89 1243 16762 4798 10410 1554 63.4 MiB 0.17 0.00 4.91341 -161.214 -4.91341 4.91341 0.68 0.000978414 0.000917071 0.0647767 0.0601687 32 3317 36 6.87369e+06 531006 586450. 2029.24 2.97 0.331074 0.286072 25474 144626 -1 2723 16 1683 2742 221851 50536 4.03776 4.03776 -154.055 -4.03776 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0280091 0.0244342 173 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.62 vpr 62.68 MiB -1 -1 0.22 18060 1 0.03 -1 -1 30152 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 24.1 MiB 1.97 672 7339 1576 4955 808 62.7 MiB 0.07 0.00 3.55895 -103.04 -3.55895 3.55895 0.68 0.000574282 0.000527795 0.024652 0.0228603 32 1962 22 6.87369e+06 307425 586450. 2029.24 0.88 0.0923815 0.0804406 25474 144626 -1 1649 22 1252 2135 162207 38995 2.88796 2.88796 -104.481 -2.88796 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0236273 0.0203868 96 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.65 vpr 63.18 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30164 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.2 MiB 2.80 1158 13127 3358 8192 1577 63.2 MiB 0.13 0.00 4.80948 -147.413 -4.80948 4.80948 0.68 0.000696787 0.000646086 0.0504144 0.0466302 30 3059 23 6.87369e+06 321398 556674. 1926.21 0.98 0.121277 0.107209 25186 138497 -1 2479 20 1353 2038 146343 31929 3.92376 3.92376 -138.461 -3.92376 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0263198 0.0228793 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.93 vpr 62.96 MiB -1 -1 0.22 18352 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.0 MiB 1.79 1064 11703 2949 7949 805 63.0 MiB 0.11 0.00 3.7235 -118.87 -3.7235 3.7235 0.68 0.000689282 0.00064066 0.039135 0.0363276 28 2710 26 6.87369e+06 447163 531479. 1839.03 3.33 0.203477 0.176117 24610 126494 -1 2453 23 1578 2751 231219 51613 3.38641 3.38641 -125.641 -3.38641 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0295038 0.0255373 132 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.24 vpr 62.71 MiB -1 -1 0.16 17732 1 0.03 -1 -1 30092 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.1 MiB 1.02 984 6120 1199 4615 306 62.7 MiB 0.07 0.00 4.14049 -128.002 -4.14049 4.14049 0.67 0.000627342 0.000583804 0.0216244 0.0200746 32 2790 25 6.87369e+06 363320 586450. 2029.24 1.31 0.118435 0.102609 25474 144626 -1 2197 22 1532 2815 214696 50708 3.5868 3.5868 -125.637 -3.5868 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0260472 0.0225608 123 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.56 vpr 63.14 MiB -1 -1 0.23 18204 1 0.03 -1 -1 30360 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 24.2 MiB 3.06 1135 13883 3973 8209 1701 63.1 MiB 0.14 0.00 4.95345 -149.04 -4.95345 4.95345 0.70 0.000692527 0.000642226 0.0532851 0.0494736 34 2680 19 6.87369e+06 307425 618332. 2139.56 1.59 0.185467 0.162048 25762 151098 -1 2300 18 1333 1762 130570 29977 3.8404 3.8404 -137.578 -3.8404 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0248861 0.0217367 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 9.07 vpr 63.19 MiB -1 -1 0.22 18312 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 24.3 MiB 2.70 887 17835 5720 8884 3231 63.2 MiB 0.15 0.00 3.78934 -120.114 -3.78934 3.78934 0.68 0.000710885 0.000661064 0.0601625 0.0557891 36 2335 23 6.87369e+06 447163 648988. 2245.63 3.48 0.262018 0.227582 26050 158493 -1 1838 16 1140 2130 129087 32042 3.31711 3.31711 -116.549 -3.31711 0 0 828058. 2865.25 0.22 0.06 0.11 -1 -1 0.22 0.0230091 0.0200932 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.42 vpr 63.25 MiB -1 -1 0.24 18248 1 0.04 -1 -1 30364 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 24.3 MiB 2.72 937 16971 4971 8753 3247 63.3 MiB 0.16 0.00 4.12873 -132.442 -4.12873 4.12873 0.68 0.000737514 0.000683883 0.0568908 0.0527661 34 2718 26 6.87369e+06 489084 618332. 2139.56 1.72 0.206077 0.179821 25762 151098 -1 2066 22 1668 2690 198901 47188 3.31716 3.31716 -120.864 -3.31716 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0305059 0.0264305 144 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.25 vpr 62.97 MiB -1 -1 0.20 18160 1 0.03 -1 -1 30260 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.1 MiB 0.89 950 11863 2938 8144 781 63.0 MiB 0.10 0.00 4.28779 -126.336 -4.28779 4.28779 0.68 0.000620441 0.000573592 0.0361995 0.0335706 32 2445 24 6.87369e+06 461137 586450. 2029.24 2.58 0.226615 0.195306 25474 144626 -1 2085 21 1314 2365 183655 42268 3.6921 3.6921 -124.78 -3.6921 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0256517 0.0222615 124 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.11 vpr 63.33 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30072 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 2.69 982 14072 3725 8207 2140 63.3 MiB 0.14 0.00 4.76758 -137.763 -4.76758 4.76758 0.71 0.000655318 0.00060949 0.0512595 0.0476823 34 2626 24 6.87369e+06 307425 618332. 2139.56 1.44 0.181268 0.15819 25762 151098 -1 2196 25 1842 2696 197778 45492 3.8247 3.8247 -129.883 -3.8247 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0304702 0.0263237 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.09 vpr 63.29 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 24.4 MiB 2.63 1107 16267 4807 9259 2201 63.3 MiB 0.16 0.00 4.75448 -144.408 -4.75448 4.75448 0.68 0.000741007 0.000688477 0.0651869 0.0604959 34 3196 22 6.87369e+06 307425 618332. 2139.56 2.50 0.20833 0.182507 25762 151098 -1 2511 24 1945 3198 270338 61028 4.16936 4.16936 -144.077 -4.16936 0 0 787024. 2723.27 0.21 0.10 0.16 -1 -1 0.21 0.0321353 0.0278372 141 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.17 vpr 63.37 MiB -1 -1 0.25 18188 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 24.4 MiB 2.75 1063 9385 2579 6271 535 63.4 MiB 0.10 0.00 4.4085 -135.318 -4.4085 4.4085 0.68 0.000746669 0.000693582 0.03993 0.0370947 34 3018 23 6.87369e+06 293451 618332. 2139.56 1.54 0.184496 0.160327 25762 151098 -1 2545 21 1704 3056 247319 56220 3.8237 3.8237 -136.367 -3.8237 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0296867 0.0257365 135 77 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 7.59 vpr 62.48 MiB -1 -1 0.22 17932 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 23.8 MiB 0.90 618 7457 1687 5261 509 62.5 MiB 0.06 0.00 3.47695 -100.633 -3.47695 3.47695 0.73 0.000416283 0.000381758 0.0181156 0.0166174 28 1979 29 6.87369e+06 307425 531479. 1839.03 3.95 0.173146 0.147954 24610 126494 -1 1725 19 1119 1757 142622 35883 2.81396 2.81396 -104.891 -2.81396 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0208845 0.0180036 93 23 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.53 vpr 62.92 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30112 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 24.1 MiB 2.02 945 13432 4185 7036 2211 62.9 MiB 0.13 0.00 3.78256 -132.968 -3.78256 3.78256 0.69 0.000673854 0.000621018 0.0528005 0.04901 34 2610 20 6.87369e+06 251529 618332. 2139.56 1.60 0.181555 0.158454 25762 151098 -1 2258 24 1858 2665 241814 53754 3.4618 3.4618 -134.64 -3.4618 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0298908 0.0258763 124 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.40 vpr 63.50 MiB -1 -1 0.21 18208 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 24.6 MiB 3.19 1267 11983 3302 6304 2377 63.5 MiB 0.14 0.00 5.48208 -158.647 -5.48208 5.48208 0.68 0.000761176 0.000706949 0.0494481 0.0459916 34 3774 46 6.87369e+06 335372 618332. 2139.56 2.32 0.194918 0.17014 25762 151098 -1 2816 20 2121 3257 267636 63434 4.8824 4.8824 -161.854 -4.8824 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0296652 0.025876 166 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.52 vpr 63.14 MiB -1 -1 0.20 18284 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 24.2 MiB 2.73 1044 14048 3802 8919 1327 63.1 MiB 0.13 0.00 4.31147 -138.674 -4.31147 4.31147 0.69 0.000694144 0.000645666 0.0450878 0.0418235 28 2441 22 6.87369e+06 475111 531479. 1839.03 0.93 0.127557 0.112442 24610 126494 -1 2295 23 1620 2678 202128 45280 3.09026 3.09026 -127.972 -3.09026 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0297182 0.0257321 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.06 vpr 62.56 MiB -1 -1 0.17 18088 1 0.03 -1 -1 30348 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 23.9 MiB 0.76 638 14295 3167 9759 1369 62.6 MiB 0.11 0.00 3.573 -107.747 -3.573 3.573 0.72 0.000563598 0.000513999 0.0458283 0.0424914 28 2093 49 6.87369e+06 349346 531479. 1839.03 1.50 0.139318 0.121894 24610 126494 -1 1708 23 1291 2042 156044 38519 3.09756 3.09756 -114.089 -3.09756 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0252833 0.0217777 104 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 10.60 vpr 63.54 MiB -1 -1 0.26 18588 1 0.03 -1 -1 30356 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 24.7 MiB 5.23 1345 13553 3739 8295 1519 63.5 MiB 0.15 0.00 5.88501 -174.993 -5.88501 5.88501 0.68 0.00085638 0.000798453 0.061175 0.0570393 36 3244 24 6.87369e+06 349346 648988. 2245.63 2.34 0.232528 0.204278 26050 158493 -1 2821 22 2283 3476 317566 69187 4.6476 4.6476 -163.711 -4.6476 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0342328 0.0296948 171 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.61 vpr 63.13 MiB -1 -1 0.23 18420 1 0.03 -1 -1 30444 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.2 MiB 2.78 991 19023 5843 10714 2466 63.1 MiB 0.16 0.00 4.60102 -140.95 -4.60102 4.60102 0.70 0.000681381 0.000633124 0.0587824 0.054399 28 2347 24 6.87369e+06 489084 531479. 1839.03 0.92 0.141682 0.125268 24610 126494 -1 2160 21 1572 2552 174583 41140 3.7901 3.7901 -135.578 -3.7901 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0281868 0.0246058 135 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.35 vpr 62.54 MiB -1 -1 0.16 17792 1 0.02 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 24.0 MiB 0.83 773 11398 3057 7257 1084 62.5 MiB 0.10 0.00 3.5954 -103.22 -3.5954 3.5954 0.68 0.000543986 0.000505651 0.033707 0.0313759 34 1951 23 6.87369e+06 335372 618332. 2139.56 2.78 0.216464 0.186333 25762 151098 -1 1568 17 903 1512 100341 24273 2.92426 2.92426 -99.3986 -2.92426 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0181227 0.0157398 94 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.26 vpr 63.22 MiB -1 -1 0.23 18420 1 0.03 -1 -1 30224 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1100 15611 4394 9181 2036 63.2 MiB 0.13 0.00 5.24422 -137.452 -5.24422 5.24422 0.68 0.000698116 0.000646806 0.0485642 0.0449604 30 2517 25 6.87369e+06 517032 556674. 1926.21 2.35 0.207577 0.180399 25186 138497 -1 2066 19 1062 2224 129406 29709 4.11965 4.11965 -128.758 -4.11965 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0258582 0.0225143 145 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.19 vpr 62.48 MiB -1 -1 0.14 17764 1 0.03 -1 -1 30096 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.9 MiB 1.06 806 14303 4874 7080 2349 62.5 MiB 0.11 0.00 3.43775 -108.88 -3.43775 3.43775 0.68 0.000553673 0.000515194 0.0458059 0.0425873 30 1962 20 6.87369e+06 265503 556674. 1926.21 2.39 0.174122 0.151251 25186 138497 -1 1661 19 1041 1865 115410 26078 2.85796 2.85796 -108.295 -2.85796 0 0 706193. 2443.58 0.26 0.05 0.12 -1 -1 0.26 0.019971 0.0176693 98 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.81 vpr 62.80 MiB -1 -1 0.23 17884 1 0.03 -1 -1 30384 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 24.1 MiB 2.12 844 16959 4603 10486 1870 62.8 MiB 0.13 0.00 3.87934 -115.346 -3.87934 3.87934 0.67 0.000600714 0.00055189 0.0483101 0.0447585 28 1981 18 6.87369e+06 475111 531479. 1839.03 0.86 0.116378 0.10291 24610 126494 -1 1929 24 1355 2462 170836 39582 3.10226 3.10226 -115.695 -3.10226 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0260062 0.0223703 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.26 vpr 63.27 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30280 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 24.3 MiB 3.83 1009 14221 4548 7033 2640 63.3 MiB 0.14 0.00 4.12353 -122.981 -4.12353 4.12353 0.68 0.000683781 0.000634246 0.0551157 0.0511588 34 2595 24 6.87369e+06 335372 618332. 2139.56 1.50 0.191664 0.167208 25762 151098 -1 2283 23 1888 2879 220409 50981 3.35291 3.35291 -119.962 -3.35291 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0298703 0.0258741 138 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.57 vpr 63.20 MiB -1 -1 0.20 18156 1 0.03 -1 -1 30304 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 24.3 MiB 2.21 979 14964 4132 9262 1570 63.2 MiB 0.14 0.00 4.41935 -144.511 -4.41935 4.41935 0.68 0.000706729 0.000655872 0.0543983 0.0504752 34 2262 22 6.87369e+06 363320 618332. 2139.56 1.43 0.191052 0.166856 25762 151098 -1 1874 21 1397 2097 141545 33476 3.96296 3.96296 -136.55 -3.96296 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0284126 0.0247064 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 6.14 vpr 63.09 MiB -1 -1 0.19 18188 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 24.2 MiB 2.27 1060 12943 3369 8335 1239 63.1 MiB 0.12 0.00 4.82683 -144.882 -4.82683 4.82683 0.68 0.000702655 0.000653332 0.0467404 0.0434579 32 2771 40 6.87369e+06 377294 586450. 2029.24 1.02 0.137942 0.121375 25474 144626 -1 2341 21 1610 2888 258610 57275 3.91576 3.91576 -141.496 -3.91576 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0281934 0.0244633 133 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.62 vpr 62.55 MiB -1 -1 0.19 17828 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.8 MiB 3.45 898 11233 2898 7220 1115 62.6 MiB 0.11 0.00 4.78272 -135.094 -4.78272 4.78272 0.69 0.000594035 0.000551682 0.0422344 0.0392441 34 2238 25 6.87369e+06 209608 618332. 2139.56 1.40 0.156663 0.13652 25762 151098 -1 1856 19 949 1318 98854 22515 3.2292 3.2292 -118.065 -3.2292 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0219241 0.0190591 103 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.09 vpr 63.03 MiB -1 -1 0.25 18196 1 0.03 -1 -1 30416 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 24.2 MiB 2.65 852 9712 2603 6178 931 63.0 MiB 0.10 0.00 3.7214 -119.25 -3.7214 3.7214 0.68 0.000632907 0.000587674 0.0379732 0.0353089 34 2440 41 6.87369e+06 237555 618332. 2139.56 1.58 0.174949 0.151409 25762 151098 -1 1987 23 1447 2180 181291 41758 3.2835 3.2835 -120.806 -3.2835 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.027652 0.0238713 114 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.76 vpr 63.09 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30540 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 24.1 MiB 2.20 924 12798 3409 8384 1005 63.1 MiB 0.11 0.00 3.48905 -102.127 -3.48905 3.48905 0.68 0.000664528 0.000612011 0.0402141 0.0372691 28 2301 21 6.87369e+06 475111 531479. 1839.03 2.69 0.204275 0.176341 24610 126494 -1 2051 21 1207 2406 163683 38026 2.93926 2.93926 -104.1 -2.93926 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0260724 0.0225632 124 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.13 vpr 62.73 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30352 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 24.0 MiB 1.60 881 17159 5393 9230 2536 62.7 MiB 0.13 0.00 4.16979 -108.643 -4.16979 4.16979 0.68 0.00058376 0.000542967 0.0480838 0.0445905 26 2324 34 6.87369e+06 489084 503264. 1741.40 2.61 0.195101 0.168923 24322 120374 -1 2062 24 1373 2548 261583 55392 3.966 3.966 -116.28 -3.966 0 0 618332. 2139.56 0.18 0.13 0.11 -1 -1 0.18 0.0354222 0.0303985 117 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 8.66 vpr 62.83 MiB -1 -1 0.20 18244 1 0.03 -1 -1 30312 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 30 32 317 269 1 156 79 17 17 289 -1 unnamed_device 23.9 MiB 3.08 809 13092 4770 6917 1405 62.8 MiB 0.12 0.00 3.85608 -118.614 -3.85608 3.85608 0.69 0.000634158 0.000590002 0.0509338 0.0473378 34 2175 21 6.87369e+06 237555 618332. 2139.56 2.79 0.233375 0.201417 25762 151098 -1 1788 21 1434 2513 188244 43098 3.10226 3.10226 -117.833 -3.10226 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0253672 0.021971 105 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.29 vpr 63.05 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30068 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 24.2 MiB 2.84 1036 10756 3215 6482 1059 63.1 MiB 0.11 0.00 3.6884 -127.691 -3.6884 3.6884 0.70 0.00066583 0.000618837 0.04257 0.0395456 34 2701 19 6.87369e+06 237555 618332. 2139.56 1.52 0.168557 0.146568 25762 151098 -1 2296 20 1527 2272 197567 44265 3.28591 3.28591 -130.033 -3.28591 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0257007 0.0223275 122 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.82 vpr 62.82 MiB -1 -1 0.23 17696 1 0.03 -1 -1 30352 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.2 MiB 1.00 1012 10744 2561 7474 709 62.8 MiB 0.10 0.00 4.55512 -132.128 -4.55512 4.55512 0.69 0.000629233 0.00058506 0.0344327 0.0318623 30 2480 24 6.87369e+06 433189 556674. 1926.21 2.94 0.222734 0.191578 25186 138497 -1 2052 22 1079 2002 143467 30775 3.3592 3.3592 -119.088 -3.3592 0 0 706193. 2443.58 0.23 0.07 0.13 -1 -1 0.23 0.0259427 0.0224646 129 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.85 vpr 63.18 MiB -1 -1 0.19 18132 1 0.03 -1 -1 30480 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 3.51 991 16023 4565 8930 2528 63.2 MiB 0.16 0.00 4.82048 -149.465 -4.82048 4.82048 0.73 0.00070126 0.000651225 0.0607351 0.0564352 34 3392 28 6.87369e+06 321398 618332. 2139.56 2.37 0.210672 0.184507 25762 151098 -1 2503 23 2181 3291 278560 65633 4.13006 4.13006 -148.675 -4.13006 0 0 787024. 2723.27 0.21 0.10 0.15 -1 -1 0.21 0.0302059 0.0262055 147 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.03 vpr 63.21 MiB -1 -1 0.25 18316 1 0.03 -1 -1 30448 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 3.86 978 12164 2681 7945 1538 63.2 MiB 0.10 0.00 5.314 -155.075 -5.314 5.314 0.68 0.000742831 0.000688045 0.0412832 0.0382202 30 2902 25 6.87369e+06 503058 556674. 1926.21 1.31 0.135055 0.11854 25186 138497 -1 2004 20 1329 2376 136001 33949 4.02235 4.02235 -142.136 -4.02235 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0284559 0.0247495 147 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 11.76 vpr 63.22 MiB -1 -1 0.23 18248 1 0.03 -1 -1 30380 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 24.2 MiB 2.79 1071 14431 4037 9367 1027 63.2 MiB 0.13 0.00 4.54908 -143.401 -4.54908 4.54908 0.68 0.000750495 0.000694561 0.0459664 0.0425483 26 3450 43 6.87369e+06 572927 503264. 1741.40 5.95 0.252996 0.218881 24322 120374 -1 2750 24 2085 3776 389607 85971 4.2086 4.2086 -148.799 -4.2086 0 0 618332. 2139.56 0.17 0.12 0.11 -1 -1 0.17 0.0330358 0.0285818 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 6.72 vpr 62.63 MiB -1 -1 0.21 18104 1 0.03 -1 -1 30228 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 2.38 839 13261 4339 6686 2236 62.6 MiB 0.12 0.00 3.89188 -120.186 -3.89188 3.89188 0.73 0.000587206 0.000546836 0.047605 0.0442736 34 2030 23 6.87369e+06 237555 618332. 2139.56 1.32 0.161395 0.140898 25762 151098 -1 1732 20 1092 1954 136878 32517 2.84696 2.84696 -109.404 -2.84696 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0223645 0.0193902 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.84 vpr 63.06 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30572 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 3.47 1044 13260 3550 8119 1591 63.1 MiB 0.13 0.00 4.61482 -143.823 -4.61482 4.61482 0.68 0.000684435 0.000626984 0.0546954 0.0508043 34 2567 22 6.87369e+06 307425 618332. 2139.56 1.48 0.193877 0.169212 25762 151098 -1 2198 21 1641 2564 203753 44634 3.8886 3.8886 -139.378 -3.8886 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0289228 0.0251167 136 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 6.82 vpr 63.19 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30384 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.2 MiB 2.37 1037 9111 2097 6458 556 63.2 MiB 0.10 0.00 5.22106 -152.651 -5.22106 5.22106 0.68 0.000688829 0.000640009 0.0344685 0.032026 34 2776 30 6.87369e+06 321398 618332. 2139.56 1.58 0.175514 0.152151 25762 151098 -1 2362 23 1709 2786 230735 51614 4.07176 4.07176 -144.258 -4.07176 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0290968 0.0252376 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 7.72 vpr 63.17 MiB -1 -1 0.27 18244 1 0.03 -1 -1 30152 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 24.2 MiB 2.84 1053 16207 5040 8570 2597 63.2 MiB 0.15 0.00 5.4124 -149.797 -5.4124 5.4124 0.68 0.000677248 0.000628475 0.0563039 0.0523153 34 2846 23 6.87369e+06 391268 618332. 2139.56 1.82 0.192 0.167989 25762 151098 -1 2223 21 1638 2564 188756 44603 4.66515 4.66515 -146.332 -4.66515 0 0 787024. 2723.27 0.28 0.08 0.16 -1 -1 0.28 0.0273165 0.023715 141 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.21 vpr 63.32 MiB -1 -1 0.27 18160 1 0.03 -1 -1 30116 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 24.4 MiB 3.13 925 12903 3392 7693 1818 63.3 MiB 0.13 0.00 4.69758 -137.96 -4.69758 4.69758 0.68 0.000721015 0.000669541 0.0465402 0.043175 28 2649 21 6.87369e+06 433189 531479. 1839.03 1.14 0.131352 0.115644 24610 126494 -1 2191 19 1414 2329 179999 42937 3.46156 3.46156 -129.767 -3.46156 0 0 648988. 2245.63 0.22 0.08 0.11 -1 -1 0.22 0.0264394 0.0231716 136 83 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.77 vpr 63.14 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 24.3 MiB 2.33 1052 9943 2760 6470 713 63.1 MiB 0.11 0.00 4.73658 -142.26 -4.73658 4.73658 0.68 0.000713465 0.000663409 0.039867 0.0370309 34 2918 23 6.87369e+06 293451 618332. 2139.56 1.56 0.179407 0.155779 25762 151098 -1 2375 24 1836 3219 237418 55210 4.11106 4.11106 -143.911 -4.11106 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.032063 0.0277727 132 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 7.58 vpr 63.22 MiB -1 -1 0.25 18164 1 0.03 -1 -1 30300 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 24.3 MiB 2.31 985 14361 3761 8676 1924 63.2 MiB 0.13 0.00 4.09163 -124.793 -4.09163 4.09163 0.68 0.000709716 0.00065878 0.0532011 0.0493953 30 2131 23 6.87369e+06 405241 556674. 1926.21 2.37 0.22016 0.191287 25186 138497 -1 1690 18 1078 1813 98061 23508 2.93501 2.93501 -111.204 -2.93501 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0251997 0.021913 132 85 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.48 vpr 62.25 MiB -1 -1 0.18 17764 1 0.03 -1 -1 30444 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.7 MiB 1.16 780 9356 2513 5902 941 62.2 MiB 0.09 0.00 3.99928 -120.309 -3.99928 3.99928 0.68 0.000553544 0.00051528 0.031255 0.0290981 34 1813 21 6.87369e+06 237555 618332. 2139.56 2.60 0.186308 0.160406 25762 151098 -1 1604 20 854 1316 101333 23397 2.87996 2.87996 -108.612 -2.87996 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0213742 0.0185258 96 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 10.16 vpr 63.17 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30452 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 24.2 MiB 4.09 1081 10898 2607 7262 1029 63.2 MiB 0.11 0.00 4.62608 -141.152 -4.62608 4.62608 0.69 0.000718102 0.000665773 0.0373017 0.0344662 28 2708 23 6.87369e+06 475111 531479. 1839.03 3.20 0.209986 0.181448 24610 126494 -1 2458 22 1693 2867 224205 50600 3.8954 3.8954 -141.192 -3.8954 0 0 648988. 2245.63 0.22 0.09 0.11 -1 -1 0.22 0.0297305 0.0257572 137 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.99 vpr 63.24 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30256 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 24.4 MiB 4.15 999 9013 2093 6314 606 63.2 MiB 0.11 0.00 4.56982 -152.894 -4.56982 4.56982 0.74 0.000756423 0.000700366 0.0394179 0.0366564 34 2775 24 6.87369e+06 293451 618332. 2139.56 1.83 0.190139 0.165048 25762 151098 -1 2295 20 1844 3015 218749 51049 3.7934 3.7934 -148.97 -3.7934 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0291613 0.0253648 142 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 6.82 vpr 62.55 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 23.9 MiB 2.65 750 8508 2024 5759 725 62.6 MiB 0.08 0.00 4.48134 -122.374 -4.48134 4.48134 0.67 0.000580881 0.000540449 0.030513 0.0283995 34 2152 23 6.87369e+06 223581 618332. 2139.56 1.38 0.145589 0.12615 25762 151098 -1 1715 18 1028 1348 88426 23124 3.3655 3.3655 -115.562 -3.3655 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.0209141 0.0181967 106 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 6.37 vpr 62.38 MiB -1 -1 0.21 17760 1 0.03 -1 -1 30384 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.8 MiB 1.09 827 12143 3533 6628 1982 62.4 MiB 0.10 0.00 3.95118 -117.571 -3.95118 3.95118 0.69 0.000549377 0.000510809 0.0387672 0.0360585 30 2035 24 6.87369e+06 279477 556674. 1926.21 2.51 0.177022 0.153266 25186 138497 -1 1786 21 1044 1832 114076 25448 2.88196 2.88196 -110.159 -2.88196 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0222564 0.0192789 99 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.78 vpr 63.27 MiB -1 -1 0.23 18172 1 0.03 -1 -1 30492 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.3 MiB 3.13 991 14871 5387 7142 2342 63.3 MiB 0.14 0.00 4.73658 -148.901 -4.73658 4.73658 0.68 0.000700503 0.000651466 0.0566351 0.0526074 34 3440 28 6.87369e+06 321398 618332. 2139.56 1.73 0.172067 0.150917 25762 151098 -1 2472 23 2154 2974 246206 55991 4.48946 4.48946 -149.449 -4.48946 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.030061 0.0260471 145 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 7.46 vpr 63.26 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30272 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 24.3 MiB 2.89 1154 11923 3090 8152 681 63.3 MiB 0.12 0.00 5.18474 -149.968 -5.18474 5.18474 0.68 0.000704281 0.000654355 0.0433649 0.0402673 34 3034 41 6.87369e+06 377294 618332. 2139.56 1.71 0.195493 0.169657 25762 151098 -1 2254 22 1523 2265 155197 40705 4.52365 4.52365 -151.721 -4.52365 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0298115 0.0259289 142 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 7.19 vpr 63.38 MiB -1 -1 0.24 18024 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.4 MiB 0.87 1048 20284 6297 10335 3652 63.4 MiB 0.17 0.00 5.33542 -146.763 -5.33542 5.33542 0.68 0.000715214 0.000665313 0.0650109 0.0603753 34 3116 28 6.87369e+06 503058 618332. 2139.56 3.42 0.292975 0.254563 25762 151098 -1 2452 22 1878 3312 278955 63395 4.70785 4.70785 -145.786 -4.70785 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0298897 0.0259579 157 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.55 vpr 63.16 MiB -1 -1 0.24 18124 1 0.03 -1 -1 30424 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 24.3 MiB 2.18 934 17397 5220 9797 2380 63.2 MiB 0.14 0.00 3.59195 -107.694 -3.59195 3.59195 0.67 0.000638872 0.000594107 0.0528954 0.0490932 30 2081 23 6.87369e+06 475111 556674. 1926.21 2.54 0.218371 0.189874 25186 138497 -1 1768 19 973 1696 95345 22746 2.80666 2.80666 -101.502 -2.80666 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0234817 0.020346 119 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.01 vpr 62.46 MiB -1 -1 0.19 18020 1 0.03 -1 -1 30472 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 23.9 MiB 0.96 647 12980 4064 8068 848 62.5 MiB 0.10 0.00 3.48275 -97.807 -3.48275 3.48275 0.69 0.000558891 0.000513841 0.0431362 0.0400553 34 1699 22 6.87369e+06 293451 618332. 2139.56 1.29 0.14936 0.129868 25762 151098 -1 1429 20 1057 1601 114649 26035 2.72966 2.72966 -93.4311 -2.72966 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0211418 0.0182592 96 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 8.57 vpr 63.51 MiB -1 -1 0.21 18484 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 3.89 1306 7108 1644 4961 503 63.5 MiB 0.09 0.00 4.4536 -142.144 -4.4536 4.4536 0.68 0.000800999 0.000743875 0.0317303 0.0294991 34 3921 24 6.87369e+06 335372 618332. 2139.56 1.78 0.191537 0.165746 25762 151098 -1 3133 21 2077 3410 276995 63575 4.57546 4.57546 -154.017 -4.57546 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0325163 0.028297 165 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 11.25 vpr 63.18 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30280 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 4.85 1071 15151 5059 7758 2334 63.2 MiB 0.14 0.00 5.62787 -168.296 -5.62787 5.62787 0.69 0.000712746 0.000660951 0.0599967 0.0556867 36 2526 36 6.87369e+06 307425 648988. 2245.63 3.41 0.273236 0.237138 26050 158493 -1 2113 21 1551 2426 157015 37447 4.59085 4.59085 -154.24 -4.59085 0 0 828058. 2865.25 0.23 0.08 0.14 -1 -1 0.23 0.0288573 0.0253487 139 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 9.25 vpr 63.08 MiB -1 -1 0.22 18208 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 331 280 1 185 81 17 17 289 -1 unnamed_device 24.2 MiB 5.01 884 8831 2130 6252 449 63.1 MiB 0.09 0.00 4.48255 -144.515 -4.48255 4.48255 0.68 0.000655917 0.000609636 0.0351412 0.0326518 34 2511 25 6.87369e+06 237555 618332. 2139.56 1.39 0.165822 0.143645 25762 151098 -1 2085 20 1422 2107 158928 37458 3.98026 3.98026 -143.093 -3.98026 0 0 787024. 2723.27 0.21 0.08 0.18 -1 -1 0.21 0.025527 0.0221893 118 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.07 vpr 63.05 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30372 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 24.1 MiB 1.26 978 12751 2883 8925 943 63.1 MiB 0.12 0.00 4.92341 -136.221 -4.92341 4.92341 0.67 0.000665951 0.000618505 0.0402187 0.0371988 32 2844 25 6.87369e+06 461137 586450. 2029.24 0.96 0.121896 0.106955 25474 144626 -1 2202 24 1453 2365 203989 46275 3.7844 3.7844 -126.569 -3.7844 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0295125 0.0255315 129 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.81 vpr 63.30 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30572 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 24.4 MiB 1.88 994 11641 2686 8324 631 63.3 MiB 0.11 0.00 4.45728 -128.707 -4.45728 4.45728 0.67 0.000734917 0.000676913 0.0404082 0.0374916 26 2822 32 6.87369e+06 475111 503264. 1741.40 1.08 0.137336 0.120316 24322 120374 -1 2420 24 1643 2677 211161 49524 4.10046 4.10046 -136.732 -4.10046 0 0 618332. 2139.56 0.17 0.09 0.11 -1 -1 0.17 0.0326618 0.0283152 149 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 5.95 vpr 63.14 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30064 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.3 MiB 1.89 790 16473 4651 9095 2727 63.1 MiB 0.14 0.00 3.6935 -103.107 -3.6935 3.6935 0.68 0.000649109 0.000603739 0.0534658 0.0496364 30 2610 40 6.87369e+06 433189 556674. 1926.21 1.22 0.153162 0.134586 25186 138497 -1 1665 19 1172 2092 115397 30397 2.83221 2.83221 -100.063 -2.83221 0 0 706193. 2443.58 0.19 0.06 0.09 -1 -1 0.19 0.0243877 0.0212037 124 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 8.28 vpr 63.20 MiB -1 -1 0.19 18220 1 0.03 -1 -1 30280 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.2 MiB 3.84 1285 14639 4463 8795 1381 63.2 MiB 0.15 0.00 4.87673 -155.976 -4.87673 4.87673 0.69 0.000710212 0.000651665 0.0571651 0.0529002 36 3172 31 6.87369e+06 307425 648988. 2245.63 1.52 0.175022 0.153344 26050 158493 -1 2654 21 1778 2884 251542 53356 4.19495 4.19495 -148.621 -4.19495 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0284244 0.0246878 148 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.94 vpr 63.24 MiB -1 -1 0.22 18264 1 0.03 -1 -1 30072 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 2.92 1114 17964 5405 9806 2753 63.2 MiB 0.17 0.00 4.14663 -137.433 -4.14663 4.14663 0.68 0.000753346 0.000699339 0.060474 0.0561057 28 3006 33 6.87369e+06 503058 531479. 1839.03 3.20 0.279492 0.242408 24610 126494 -1 2459 21 1688 2717 206629 48333 3.48446 3.48446 -134.388 -3.48446 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0297263 0.0258313 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.63 vpr 62.49 MiB -1 -1 0.22 17952 1 0.03 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 23.8 MiB 1.76 708 14184 4108 7835 2241 62.5 MiB 0.11 0.00 3.90218 -115.978 -3.90218 3.90218 0.71 0.00057833 0.000538187 0.0488418 0.0454451 28 1736 21 6.87369e+06 265503 531479. 1839.03 2.10 0.197649 0.17148 24610 126494 -1 1548 18 1133 1639 120489 27801 3.16076 3.16076 -114.916 -3.16076 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0207101 0.0180267 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.24 vpr 62.86 MiB -1 -1 0.23 18232 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 310 266 1 175 81 17 17 289 -1 unnamed_device 24.3 MiB 1.93 963 14081 4182 8130 1769 62.9 MiB 0.13 0.00 3.97822 -122.829 -3.97822 3.97822 0.70 0.000628603 0.000583045 0.0525321 0.0487055 34 2188 24 6.87369e+06 237555 618332. 2139.56 1.40 0.176415 0.153853 25762 151098 -1 1967 18 1248 1705 141947 30974 3.3007 3.3007 -124.41 -3.3007 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0223471 0.0194054 112 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 9.08 vpr 63.10 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30508 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 24.2 MiB 1.49 880 19380 5710 10605 3065 63.1 MiB 0.16 0.00 4.54717 -125.702 -4.54717 4.54717 0.68 0.000668051 0.000612413 0.0562088 0.0519367 28 2476 25 6.87369e+06 544980 531479. 1839.03 4.81 0.222719 0.193515 24610 126494 -1 2103 21 1460 2605 205764 46881 4.4682 4.4682 -129.602 -4.4682 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0266325 0.0230917 135 33 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.99 vpr 62.49 MiB -1 -1 0.21 17944 1 0.03 -1 -1 30388 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 2.46 859 10916 2514 7778 624 62.5 MiB 0.10 0.00 4.61538 -122.043 -4.61538 4.61538 0.70 0.000564069 0.000524851 0.0375621 0.0349508 34 2080 22 6.87369e+06 265503 618332. 2139.56 2.77 0.207574 0.178687 25762 151098 -1 1752 23 1110 1432 97234 23995 3.57416 3.57416 -114.879 -3.57416 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0242386 0.020896 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 9.00 vpr 62.47 MiB -1 -1 0.22 18064 1 0.03 -1 -1 30040 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 23.8 MiB 3.36 890 13092 3761 8015 1316 62.5 MiB 0.11 0.00 3.89598 -125.954 -3.89598 3.89598 0.67 0.000605263 0.000563775 0.0479907 0.0446773 30 2147 21 6.87369e+06 209608 556674. 1926.21 2.86 0.188003 0.163408 25186 138497 -1 1826 22 1154 1910 142563 30699 2.86266 2.86266 -114.625 -2.86266 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0249425 0.0215988 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.22 vpr 63.17 MiB -1 -1 0.26 18192 1 0.03 -1 -1 30116 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 2.66 1030 11700 3258 7456 986 63.2 MiB 0.11 0.00 3.94428 -127.758 -3.94428 3.94428 0.68 0.000724386 0.000672941 0.0392103 0.0363534 28 2447 27 6.87369e+06 517032 531479. 1839.03 2.58 0.219635 0.19053 24610 126494 -1 2173 19 1608 2521 177586 41218 3.09026 3.09026 -122.565 -3.09026 0 0 648988. 2245.63 0.20 0.08 0.13 -1 -1 0.20 0.0271408 0.0236371 141 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.97 vpr 62.58 MiB -1 -1 0.23 18080 1 0.03 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 23.9 MiB 2.79 763 6616 1499 4719 398 62.6 MiB 0.06 0.00 3.6942 -114.024 -3.6942 3.6942 0.71 0.000433155 0.000398338 0.0212557 0.0196624 34 2136 24 6.87369e+06 237555 618332. 2139.56 1.35 0.134502 0.115828 25762 151098 -1 1636 20 1101 1571 107353 27112 3.19991 3.19991 -110.054 -3.19991 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.022843 0.0198017 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.94 vpr 63.15 MiB -1 -1 0.19 18176 1 0.03 -1 -1 30024 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 2.73 991 15431 4685 8411 2335 63.2 MiB 0.13 0.00 3.75634 -117.047 -3.75634 3.75634 0.71 0.000690882 0.000642314 0.0516048 0.047966 28 2561 28 6.87369e+06 433189 531479. 1839.03 1.33 0.140791 0.124221 24610 126494 -1 2292 23 1283 2119 183686 40418 3.15881 3.15881 -116.2 -3.15881 0 0 648988. 2245.63 0.18 0.08 0.13 -1 -1 0.18 0.0295352 0.0255474 129 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.82 vpr 63.21 MiB -1 -1 0.21 18272 1 0.03 -1 -1 30288 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 24.3 MiB 2.99 969 16511 5526 8195 2790 63.2 MiB 0.14 0.00 3.7606 -125.402 -3.7606 3.7606 0.68 0.000748381 0.000695233 0.0592408 0.0549725 30 2175 23 6.87369e+06 447163 556674. 1926.21 0.87 0.148511 0.131266 25186 138497 -1 1707 22 1533 2185 119272 29204 2.85691 2.85691 -118.154 -2.85691 0 0 706193. 2443.58 0.27 0.06 0.14 -1 -1 0.27 0.0258664 0.0225131 137 91 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.17 vpr 63.10 MiB -1 -1 0.20 17952 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 24.2 MiB 2.08 763 5412 1083 3998 331 63.1 MiB 0.06 0.00 3.46595 -107.951 -3.46595 3.46595 0.68 0.000623409 0.000580347 0.0214591 0.0199533 34 2023 20 6.87369e+06 223581 618332. 2139.56 1.33 0.13963 0.120267 25762 151098 -1 1758 19 1028 1626 127152 30410 3.12476 3.12476 -114.292 -3.12476 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0231757 0.0200857 99 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.14 vpr 62.79 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30272 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 24.2 MiB 1.94 878 7202 1691 5055 456 62.8 MiB 0.08 0.00 4.13079 -127.98 -4.13079 4.13079 0.68 0.000608897 0.000566757 0.0265478 0.0247082 34 2496 23 6.87369e+06 251529 618332. 2139.56 1.42 0.145907 0.126152 25762 151098 -1 2073 22 1468 2194 182182 42188 3.22191 3.22191 -125.177 -3.22191 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0255867 0.0221699 114 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.53 vpr 63.08 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30192 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 24.1 MiB 3.16 1100 9914 2382 6266 1266 63.1 MiB 0.10 0.00 4.82651 -140.217 -4.82651 4.82651 0.68 0.000657206 0.000611371 0.036452 0.0338882 34 2714 26 6.87369e+06 307425 618332. 2139.56 1.54 0.167465 0.145383 25762 151098 -1 2273 23 1641 2291 162066 37556 4.02506 4.02506 -136.33 -4.02506 0 0 787024. 2723.27 0.22 0.04 0.15 -1 -1 0.22 0.0157331 0.0138203 132 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.79 vpr 62.87 MiB -1 -1 0.20 18340 1 0.03 -1 -1 30196 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.0 MiB 2.48 896 9336 2254 6420 662 62.9 MiB 0.09 0.00 4.11363 -114.181 -4.11363 4.11363 0.68 0.000651218 0.000606732 0.0321799 0.0299321 32 2343 29 6.87369e+06 405241 586450. 2029.24 2.50 0.229231 0.197118 25474 144626 -1 1909 23 1104 1920 137359 32910 3.23561 3.23561 -112.659 -3.23561 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0274895 0.0238243 123 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 8.06 vpr 63.28 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30496 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 24.3 MiB 3.50 1101 15395 4526 8609 2260 63.3 MiB 0.16 0.00 5.22906 -166.389 -5.22906 5.22906 0.68 0.000755315 0.000702341 0.0643249 0.0597423 34 2846 21 6.87369e+06 307425 618332. 2139.56 1.61 0.207991 0.182101 25762 151098 -1 2432 21 1761 2709 230464 50254 4.17706 4.17706 -157.262 -4.17706 0 0 787024. 2723.27 0.21 0.09 0.16 -1 -1 0.21 0.030121 0.0261709 151 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.98 vpr 62.68 MiB -1 -1 0.22 17780 1 0.02 -1 -1 30060 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 24.1 MiB 1.07 761 7992 2192 5273 527 62.7 MiB 0.07 0.00 3.42155 -104.71 -3.42155 3.42155 0.68 0.000527832 0.000492182 0.0261445 0.0243233 28 1923 21 6.87369e+06 237555 531479. 1839.03 2.21 0.175979 0.151187 24610 126494 -1 1756 15 866 1350 103447 23875 3.05556 3.05556 -108.436 -3.05556 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0168032 0.0146386 92 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.25 vpr 63.30 MiB -1 -1 0.25 18196 1 0.03 -1 -1 30240 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1080 17883 4895 11214 1774 63.3 MiB 0.16 0.00 4.44135 -148.747 -4.44135 4.44135 0.68 0.000773656 0.000717189 0.0628337 0.0582391 34 2607 20 6.87369e+06 489084 618332. 2139.56 1.45 0.208375 0.182292 25762 151098 -1 2257 21 1628 2285 170577 39284 4.02096 4.02096 -147.829 -4.02096 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0304992 0.0264297 145 90 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.19 vpr 63.05 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30040 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.88 879 12808 3950 7474 1384 63.1 MiB 0.12 0.00 3.59615 -129.411 -3.59615 3.59615 0.68 0.00070828 0.000656942 0.0549948 0.0510585 34 2239 23 6.87369e+06 223581 618332. 2139.56 1.39 0.194014 0.169188 25762 151098 -1 1862 21 1602 2312 183384 40198 2.87886 2.87886 -123.177 -2.87886 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0283847 0.0245994 114 96 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.83 vpr 63.20 MiB -1 -1 0.25 18360 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 24.3 MiB 2.65 1029 16083 4329 9310 2444 63.2 MiB 0.14 0.00 4.14663 -128.65 -4.14663 4.14663 0.71 0.000703662 0.000653243 0.0541845 0.0502824 32 2440 18 6.87369e+06 447163 586450. 2029.24 1.25 0.153462 0.13493 25474 144626 -1 2064 21 1193 1878 143364 33256 3.24961 3.24961 -117.981 -3.24961 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0243451 0.0213208 134 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.49 vpr 63.40 MiB -1 -1 0.24 18528 1 0.03 -1 -1 30492 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 4.31 1256 15335 4173 9820 1342 63.4 MiB 0.17 0.00 5.90839 -177.511 -5.90839 5.90839 0.70 0.000768307 0.000713306 0.0624686 0.0577041 34 3251 23 6.87369e+06 349346 618332. 2139.56 3.20 0.29183 0.253044 25762 151098 -1 2604 22 2027 3067 244222 57410 4.9762 4.9762 -169.067 -4.9762 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0323605 0.0281827 171 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.47 vpr 62.36 MiB -1 -1 0.14 17972 1 0.03 -1 -1 30064 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 23.8 MiB 1.58 720 11161 3070 6702 1389 62.4 MiB 0.08 0.00 3.01346 -96.0966 -3.01346 3.01346 0.67 0.00049744 0.000463118 0.035693 0.0332146 34 1704 20 6.87369e+06 209608 618332. 2139.56 1.24 0.131918 0.114823 25762 151098 -1 1500 26 993 1332 109947 25100 2.57366 2.57366 -98.2805 -2.57366 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0240196 0.0207071 81 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.76 vpr 62.45 MiB -1 -1 0.23 17936 1 0.03 -1 -1 30300 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 23.7 MiB 1.06 777 9706 2580 6483 643 62.5 MiB 0.09 0.00 3.91444 -121.772 -3.91444 3.91444 0.68 0.000598948 0.000557536 0.0350695 0.0325695 30 1783 33 6.87369e+06 265503 556674. 1926.21 0.85 0.115237 0.100737 25186 138497 -1 1503 20 912 1424 85348 19767 2.94916 2.94916 -112.049 -2.94916 0 0 706193. 2443.58 0.26 0.06 0.12 -1 -1 0.26 0.0231061 0.0200262 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.08 vpr 62.67 MiB -1 -1 0.22 18052 1 0.03 -1 -1 30072 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 24.0 MiB 1.25 823 13719 4254 8151 1314 62.7 MiB 0.12 0.00 3.44891 -115.299 -3.44891 3.44891 0.67 0.00062491 0.000579923 0.0469355 0.0434427 32 2354 28 6.87369e+06 321398 586450. 2029.24 0.93 0.12523 0.110099 25474 144626 -1 1959 22 1404 2460 214166 49660 3.07456 3.07456 -119.964 -3.07456 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0257761 0.0222871 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.26 vpr 62.25 MiB -1 -1 0.21 18068 1 0.03 -1 -1 30240 -1 -1 29 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 23.7 MiB 0.76 469 11804 3249 6587 1968 62.2 MiB 0.08 0.00 3.45495 -79.1828 -3.45495 3.45495 0.68 0.000475847 0.000441709 0.0312348 0.0289079 30 1311 22 6.87369e+06 405241 556674. 1926.21 1.80 0.141557 0.121201 25186 138497 -1 979 19 618 1125 61942 15499 2.93926 2.93926 -76.5502 -2.93926 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0177172 0.015353 87 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.28 vpr 63.15 MiB -1 -1 0.25 18408 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 2.73 967 14724 4258 8138 2328 63.1 MiB 0.14 0.00 4.3826 -128.252 -4.3826 4.3826 0.68 0.000728381 0.00067686 0.0609742 0.0566685 34 2869 26 6.87369e+06 279477 618332. 2139.56 1.63 0.205681 0.179859 25762 151098 -1 2467 20 1544 2645 204924 48842 3.93806 3.93806 -132.192 -3.93806 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0278083 0.0241601 133 72 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.15 vpr 63.35 MiB -1 -1 0.22 18108 1 0.03 -1 -1 30284 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 24.4 MiB 2.73 1004 17347 4956 10888 1503 63.3 MiB 0.17 0.00 4.17399 -136.544 -4.17399 4.17399 0.68 0.000769371 0.000713735 0.0644426 0.0597195 34 2399 24 6.87369e+06 433189 618332. 2139.56 1.47 0.22127 0.193248 25762 151098 -1 2014 19 1684 2595 166650 40129 3.01531 3.01531 -120.867 -3.01531 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0283922 0.0247102 143 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 6.49 vpr 63.03 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30060 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 24.1 MiB 2.01 1064 11788 3543 6827 1418 63.0 MiB 0.12 0.00 5.46377 -156.517 -5.46377 5.46377 0.67 0.000700948 0.000651814 0.044689 0.0415076 34 2863 36 6.89349e+06 338252 618332. 2139.56 1.60 0.171952 0.149893 25762 151098 -1 2132 21 1793 2659 168525 41192 4.70325 4.70325 -148.177 -4.70325 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0274503 0.0240988 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.64 vpr 62.98 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30344 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 24.1 MiB 1.98 1124 13738 3850 8296 1592 63.0 MiB 0.14 0.00 4.83304 -147.244 -4.83304 4.83304 0.68 0.000710429 0.00066045 0.052054 0.0483623 34 2963 23 6.89349e+06 366440 618332. 2139.56 2.79 0.243585 0.211039 25762 151098 -1 2412 24 2103 3099 213515 50520 4.35719 4.35719 -147.275 -4.35719 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0313003 0.0271085 158 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.41 vpr 62.39 MiB -1 -1 0.24 17884 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 23.9 MiB 2.04 986 10315 2668 7087 560 62.4 MiB 0.10 0.00 4.28303 -120.803 -4.28303 4.28303 0.74 0.000625518 0.000582311 0.0366485 0.0340526 34 2543 23 6.89349e+06 295971 618332. 2139.56 1.50 0.159535 0.138481 25762 151098 -1 2116 19 1277 1735 126865 29234 3.6343 3.6343 -119.864 -3.6343 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0231766 0.020109 125 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.12 vpr 62.50 MiB -1 -1 0.19 18204 1 0.03 -1 -1 30312 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1020 7153 1669 4959 525 62.5 MiB 0.08 0.00 4.81208 -129.448 -4.81208 4.81208 0.68 0.000629593 0.000584445 0.0260277 0.0241825 36 2388 20 6.89349e+06 338252 648988. 2245.63 2.79 0.218131 0.18688 26050 158493 -1 2075 18 1238 2046 156652 33509 3.6654 3.6654 -116.643 -3.6654 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0230202 0.0200177 134 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.48 vpr 63.20 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1107 14679 4819 7580 2280 63.2 MiB 0.14 0.00 5.27653 -151.244 -5.27653 5.27653 0.68 0.000683471 0.000634937 0.054302 0.0504273 38 2778 26 6.89349e+06 324158 678818. 2348.85 4.51 0.313245 0.270701 26626 170182 -1 2374 21 1936 3505 253868 55492 4.19779 4.19779 -144.222 -4.19779 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0273029 0.0237135 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 9.08 vpr 63.16 MiB -1 -1 0.20 18216 1 0.03 -1 -1 30236 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 24.2 MiB 2.46 1135 18523 5440 10042 3041 63.2 MiB 0.17 0.00 3.8789 -124.315 -3.8789 3.8789 0.68 0.000718763 0.00066721 0.0625587 0.0579835 36 2957 47 6.89349e+06 465097 648988. 2245.63 3.62 0.294096 0.254714 26050 158493 -1 2462 34 2089 3697 334723 100094 3.61635 3.61635 -126.916 -3.61635 0 0 828058. 2865.25 0.22 0.14 0.14 -1 -1 0.22 0.0424555 0.0365164 162 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.34 vpr 62.38 MiB -1 -1 0.20 17876 1 0.02 -1 -1 30600 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 27 32 259 221 1 159 80 17 17 289 -1 unnamed_device 23.8 MiB 1.23 817 10228 2968 5692 1568 62.4 MiB 0.08 0.00 4.18543 -114.153 -4.18543 4.18543 0.68 0.000557515 0.000519437 0.0345069 0.0321018 34 1818 19 6.89349e+06 295971 618332. 2139.56 1.34 0.139454 0.120833 25762 151098 -1 1628 19 1216 1762 136661 30771 3.06791 3.06791 -104.44 -3.06791 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0208683 0.0180953 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 6.14 vpr 62.36 MiB -1 -1 0.18 17708 1 0.03 -1 -1 30244 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.74 946 10895 2711 7214 970 62.4 MiB 0.09 0.00 3.35428 -101.445 -3.35428 3.35428 0.75 0.00061033 0.000562904 0.0315946 0.0293088 34 2155 20 6.89349e+06 451003 618332. 2139.56 2.55 0.22153 0.190315 25762 151098 -1 1873 16 929 1621 103965 24171 2.61751 2.61751 -96.334 -2.61751 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0191383 0.016651 119 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.23 vpr 62.66 MiB -1 -1 0.22 18332 1 0.02 -1 -1 30140 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 24.0 MiB 1.96 1055 11652 3009 7126 1517 62.7 MiB 0.12 0.00 3.67955 -123.605 -3.67955 3.67955 0.67 0.000635783 0.000591545 0.0435909 0.0405143 34 2608 23 6.89349e+06 267783 618332. 2139.56 1.37 0.141979 0.124114 25762 151098 -1 2206 19 1445 1973 164904 35471 2.98246 2.98246 -120.289 -2.98246 0 0 787024. 2723.27 0.22 0.07 0.16 -1 -1 0.22 0.0236838 0.0205713 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.80 vpr 62.59 MiB -1 -1 0.23 18060 1 0.03 -1 -1 30060 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 23.9 MiB 1.56 837 7202 1579 5230 393 62.6 MiB 0.08 0.00 4.04458 -129.952 -4.04458 4.04458 0.67 0.000622578 0.000579455 0.0270632 0.0251889 34 2391 27 6.89349e+06 253689 618332. 2139.56 1.41 0.149449 0.12909 25762 151098 -1 1910 20 1366 1796 129797 30654 3.2385 3.2385 -122.793 -3.2385 0 0 787024. 2723.27 0.23 0.08 0.13 -1 -1 0.23 0.0261919 0.0231063 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.35 vpr 62.88 MiB -1 -1 0.17 18240 1 0.03 -1 -1 30364 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 23.9 MiB 2.08 927 14123 4163 7804 2156 62.9 MiB 0.12 0.00 4.49997 -130.748 -4.49997 4.49997 0.68 0.000616293 0.000573001 0.0501201 0.0465669 34 2305 38 6.89349e+06 295971 618332. 2139.56 1.48 0.156817 0.13727 25762 151098 -1 1923 20 1284 1698 124692 28790 3.4872 3.4872 -123.184 -3.4872 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0238086 0.0206455 124 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.67 vpr 62.31 MiB -1 -1 0.18 17980 1 0.03 -1 -1 30028 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.6 MiB 1.46 952 13206 3625 8328 1253 62.3 MiB 0.12 0.00 3.6917 -113.924 -3.6917 3.6917 0.71 0.000731693 0.00067887 0.0508404 0.047314 34 2324 21 6.89349e+06 239595 618332. 2139.56 1.48 0.163331 0.142729 25762 151098 -1 1923 19 1033 1405 106174 24328 2.93851 2.93851 -112.281 -2.93851 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0219008 0.0190045 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.27 vpr 62.89 MiB -1 -1 0.23 18376 1 0.03 -1 -1 30328 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.0 MiB 1.91 1112 16791 5058 9343 2390 62.9 MiB 0.16 0.00 4.10168 -134.349 -4.10168 4.10168 0.68 0.000691001 0.000642519 0.0628519 0.0584317 36 2698 22 6.89349e+06 324158 648988. 2245.63 3.46 0.249827 0.217352 26050 158493 -1 2404 21 1507 2341 203029 43277 3.18756 3.18756 -125.041 -3.18756 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0275841 0.0239431 143 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.98 vpr 63.25 MiB -1 -1 0.20 18324 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 24.3 MiB 2.40 1080 16663 5045 8811 2807 63.2 MiB 0.16 0.00 5.63697 -160.415 -5.63697 5.63697 0.70 0.000705609 0.000651359 0.0627434 0.0582355 34 3263 37 6.89349e+06 338252 618332. 2139.56 1.69 0.18867 0.165623 25762 151098 -1 2346 21 1863 2593 189943 44204 4.44739 4.44739 -150.221 -4.44739 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0286455 0.0248791 153 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.44 vpr 62.55 MiB -1 -1 0.18 17924 1 0.03 -1 -1 30380 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 24.0 MiB 1.42 852 11909 3160 6915 1834 62.5 MiB 0.09 0.00 3.19582 -98.8741 -3.19582 3.19582 0.67 0.000539581 0.000502468 0.039886 0.0371267 34 1998 28 6.89349e+06 253689 618332. 2139.56 1.31 0.150561 0.130811 25762 151098 -1 1744 19 990 1363 98877 22900 2.88911 2.88911 -99.3738 -2.88911 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.020186 0.0174834 102 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.42 vpr 63.06 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30272 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 24.2 MiB 2.62 1298 15493 4676 9050 1767 63.1 MiB 0.15 0.00 4.1661 -138.014 -4.1661 4.1661 0.70 0.000722605 0.000671266 0.0602376 0.0559801 34 3382 50 6.89349e+06 338252 618332. 2139.56 1.89 0.230834 0.2009 25762 151098 -1 2818 21 2116 3346 245686 55521 3.72535 3.72535 -140.74 -3.72535 0 0 787024. 2723.27 0.22 0.09 0.14 -1 -1 0.22 0.0290734 0.0252862 159 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.76 vpr 62.80 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30096 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 24.0 MiB 1.90 1059 14450 4622 7260 2568 62.8 MiB 0.13 0.00 4.13204 -133.409 -4.13204 4.13204 0.69 0.000681738 0.000632868 0.0543446 0.0504722 34 2659 50 6.89349e+06 310065 618332. 2139.56 1.91 0.217044 0.188758 25762 151098 -1 2275 19 1487 2177 187547 40425 3.10146 3.10146 -121.303 -3.10146 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0272505 0.0238081 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.91 vpr 62.95 MiB -1 -1 0.20 18152 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 24.1 MiB 2.27 1220 14965 4341 8910 1714 62.9 MiB 0.14 0.00 3.67155 -130.035 -3.67155 3.67155 0.68 0.000653994 0.000608431 0.0540854 0.0502053 34 2727 43 6.89349e+06 295971 618332. 2139.56 1.71 0.201817 0.175775 25762 151098 -1 2283 21 1426 1856 144371 32637 2.81996 2.81996 -120.618 -2.81996 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0260416 0.0225771 131 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.79 vpr 62.08 MiB -1 -1 0.17 18044 1 0.02 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 23.3 MiB 1.36 773 8390 2474 4676 1240 62.1 MiB 0.08 0.00 2.65863 -91.3953 -2.65863 2.65863 0.71 0.000501933 0.00046746 0.0323928 0.0300414 30 1654 19 6.89349e+06 211408 556674. 1926.21 1.71 0.128438 0.111296 25186 138497 -1 1419 17 650 748 54641 12715 2.06407 2.06407 -89.984 -2.06407 0 0 706193. 2443.58 0.19 0.04 0.14 -1 -1 0.19 0.016971 0.0147677 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.83 vpr 62.37 MiB -1 -1 0.12 18292 1 0.03 -1 -1 30280 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 23.7 MiB 2.49 980 13254 3823 7828 1603 62.4 MiB 0.12 0.00 4.85214 -146.508 -4.85214 4.85214 0.68 0.000609402 0.000567375 0.0468354 0.0435593 34 2311 44 6.89349e+06 267783 618332. 2139.56 1.65 0.149064 0.130504 25762 151098 -1 2002 19 1214 1946 154611 34571 3.434 3.434 -128.976 -3.434 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0228054 0.0197992 117 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.99 vpr 62.92 MiB -1 -1 0.17 18380 1 0.03 -1 -1 30368 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1134 18323 5038 11357 1928 62.9 MiB 0.16 0.00 4.77763 -150.944 -4.77763 4.77763 0.68 0.000749038 0.000689339 0.0582688 0.0541068 34 2697 21 6.89349e+06 479191 618332. 2139.56 1.52 0.19101 0.1672 25762 151098 -1 2339 24 1570 2408 208449 46358 3.91014 3.91014 -143.319 -3.91014 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0307158 0.0266676 151 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.40 vpr 63.16 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 24.3 MiB 1.81 1226 16023 5263 8066 2694 63.2 MiB 0.15 0.00 4.5284 -136.451 -4.5284 4.5284 0.67 0.000551913 0.000505938 0.0617808 0.0572799 36 2809 22 6.89349e+06 324158 648988. 2245.63 3.67 0.262304 0.227769 26050 158493 -1 2359 21 1619 2528 181970 39402 3.8927 3.8927 -135.308 -3.8927 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0292507 0.0254405 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.44 vpr 62.09 MiB -1 -1 0.21 17960 1 0.02 -1 -1 30644 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 23.5 MiB 1.24 418 9996 4130 4980 886 62.1 MiB 0.07 0.00 2.70371 -73.8386 -2.70371 2.70371 0.75 0.00042811 0.000397695 0.0277146 0.0256876 34 1435 48 6.89349e+06 253689 618332. 2139.56 1.37 0.11371 0.0986784 25762 151098 -1 992 15 616 732 54609 13861 2.01835 2.01835 -68.0094 -2.01835 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.013553 0.0118176 75 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.49 vpr 62.41 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30248 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.8 MiB 1.09 1067 12375 3267 7751 1357 62.4 MiB 0.12 0.00 4.54727 -128.116 -4.54727 4.54727 0.68 0.000615163 0.000572356 0.041655 0.0387203 34 2366 30 6.89349e+06 324158 618332. 2139.56 1.59 0.168974 0.146926 25762 151098 -1 2096 19 1286 2385 179552 39922 3.6391 3.6391 -122.053 -3.6391 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0226701 0.0196808 119 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.33 vpr 61.96 MiB -1 -1 0.20 17444 1 0.02 -1 -1 29932 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.3 MiB 0.50 403 9836 3145 4361 2330 62.0 MiB 0.07 0.00 2.34152 -71.3945 -2.34152 2.34152 0.68 0.000507688 0.000471829 0.0278647 0.0258026 32 1221 23 6.89349e+06 169126 586450. 2029.24 1.15 0.0939301 0.0819733 25474 144626 -1 935 22 680 881 63446 17592 2.01306 2.01306 -72.7771 -2.01306 0 0 744469. 2576.02 0.21 0.05 0.13 -1 -1 0.21 0.0199442 0.0172881 65 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.95 vpr 62.45 MiB -1 -1 0.21 17884 1 0.03 -1 -1 30012 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 23.7 MiB 1.62 984 14175 4702 7220 2253 62.4 MiB 0.13 0.00 4.89708 -136.259 -4.89708 4.89708 0.68 0.000633104 0.000588508 0.0509934 0.0474266 34 2464 24 6.89349e+06 281877 618332. 2139.56 1.45 0.174902 0.152671 25762 151098 -1 1959 18 1130 1661 120876 27312 3.76256 3.76256 -122.693 -3.76256 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0228572 0.0199043 125 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 6.25 vpr 62.55 MiB -1 -1 0.16 17780 1 0.04 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.9 MiB 0.77 988 16079 4364 9917 1798 62.5 MiB 0.15 0.00 3.39295 -107.482 -3.39295 3.39295 0.68 0.000631697 0.000586032 0.0489328 0.0453866 28 2520 24 6.89349e+06 436909 531479. 1839.03 2.72 0.198849 0.172906 24610 126494 -1 2310 22 1455 2525 183042 43297 2.94641 2.94641 -112.319 -2.94641 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0263421 0.0228177 130 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.71 vpr 63.25 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 24.4 MiB 2.30 1111 15639 4885 7776 2978 63.3 MiB 0.15 0.00 4.89143 -136.037 -4.89143 4.89143 0.68 0.000678027 0.000629555 0.0573649 0.0533216 38 2557 22 6.89349e+06 324158 678818. 2348.85 3.48 0.243355 0.211189 26626 170182 -1 2201 21 1376 2078 155445 32828 3.67726 3.67726 -123.649 -3.67726 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0271453 0.0235824 142 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.28 vpr 62.55 MiB -1 -1 0.21 18096 1 0.03 -1 -1 30228 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 23.8 MiB 2.09 990 13381 4491 7116 1774 62.6 MiB 0.12 0.00 3.64535 -123.731 -3.64535 3.64535 0.68 0.000605037 0.000562914 0.0479057 0.0445699 34 2272 22 6.89349e+06 239595 618332. 2139.56 1.41 0.165404 0.144136 25762 151098 -1 1932 21 1182 1772 132877 30221 3.01066 3.01066 -119.775 -3.01066 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0240615 0.0208376 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.45 vpr 62.35 MiB -1 -1 0.22 17956 1 0.03 -1 -1 30140 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 23.8 MiB 1.71 909 12754 4731 6611 1412 62.3 MiB 0.11 0.00 4.01762 -117.054 -4.01762 4.01762 0.68 0.000564602 0.000525133 0.0444365 0.0413298 34 2214 31 6.89349e+06 239595 618332. 2139.56 1.89 0.163972 0.142817 25762 151098 -1 1810 31 1254 2280 302828 126933 3.3027 3.3027 -110.07 -3.3027 0 0 787024. 2723.27 0.21 0.12 0.13 -1 -1 0.21 0.0310817 0.0267393 104 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.45 vpr 62.25 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30264 -1 -1 20 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 23.7 MiB 1.79 829 10744 2823 7309 612 62.2 MiB 0.09 0.00 4.27226 -119.167 -4.27226 4.27226 0.69 0.000560271 0.000521936 0.0365333 0.0340184 34 2243 35 6.89349e+06 281877 618332. 2139.56 1.89 0.147802 0.12824 25762 151098 -1 1746 16 1011 1667 124248 27774 3.45175 3.45175 -114.697 -3.45175 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0181403 0.0157563 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 8.44 vpr 62.38 MiB -1 -1 0.17 17776 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 1.27 714 11106 3926 4953 2227 62.4 MiB 0.10 0.00 3.82748 -115.489 -3.82748 3.82748 0.68 0.000565218 0.000526284 0.0375549 0.0349464 30 2318 26 6.89349e+06 239595 556674. 1926.21 4.47 0.19943 0.172161 25186 138497 -1 1775 21 1230 2035 152867 35481 3.02446 3.02446 -116.652 -3.02446 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0226439 0.0195866 101 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.04 vpr 62.48 MiB -1 -1 0.21 17928 1 0.03 -1 -1 30208 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.67 960 14081 4470 7746 1865 62.5 MiB 0.12 0.00 3.58045 -113.742 -3.58045 3.58045 0.68 0.000585011 0.000545042 0.0488242 0.0454684 34 2228 27 6.89349e+06 253689 618332. 2139.56 1.53 0.166762 0.145473 25762 151098 -1 1952 22 1147 1743 143098 31691 2.80601 2.80601 -107.332 -2.80601 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0240254 0.0207667 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 8.42 vpr 62.42 MiB -1 -1 0.20 18048 1 0.03 -1 -1 30544 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 24.0 MiB 2.37 955 13763 4007 8316 1440 62.4 MiB 0.12 0.00 3.50915 -107.043 -3.50915 3.50915 0.72 0.000591962 0.000550009 0.0472016 0.0438427 36 2068 25 6.89349e+06 310065 648988. 2245.63 3.24 0.211772 0.183067 26050 158493 -1 1863 22 1037 1440 101893 22703 2.57556 2.57556 -101.163 -2.57556 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0255165 0.0221493 120 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.42 vpr 63.06 MiB -1 -1 0.17 18292 1 0.03 -1 -1 30460 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 24.2 MiB 1.53 1344 6623 1379 4726 518 63.1 MiB 0.08 0.00 4.57545 -133.188 -4.57545 4.57545 0.68 0.000732458 0.000679884 0.0265834 0.0247109 36 2931 18 6.89349e+06 352346 648988. 2245.63 2.10 0.167681 0.145233 26050 158493 -1 2509 19 1364 2352 169188 37207 3.89416 3.89416 -129.763 -3.89416 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0271702 0.0236731 159 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 9.08 vpr 63.20 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30204 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 24.2 MiB 2.27 1314 15103 4520 8282 2301 63.2 MiB 0.15 0.00 4.62597 -154.671 -4.62597 4.62597 0.67 0.000750008 0.000696475 0.0606448 0.0563162 38 2891 23 6.89349e+06 338252 678818. 2348.85 3.81 0.293115 0.253875 26626 170182 -1 2554 24 2212 3209 243302 52794 3.76655 3.76655 -142.691 -3.76655 0 0 902133. 3121.57 0.23 0.10 0.16 -1 -1 0.23 0.0332743 0.0288308 168 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.18 vpr 62.26 MiB -1 -1 0.23 18168 1 0.03 -1 -1 30108 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.7 MiB 1.67 891 12681 4633 6140 1908 62.3 MiB 0.11 0.00 4.00748 -121.286 -4.00748 4.00748 0.73 0.000596253 0.000554269 0.044775 0.0416583 34 2241 20 6.89349e+06 253689 618332. 2139.56 1.61 0.15832 0.137925 25762 151098 -1 1909 20 958 1482 148975 31008 3.08205 3.08205 -114.277 -3.08205 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0227721 0.0197303 109 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.27 vpr 63.16 MiB -1 -1 0.25 18256 1 0.03 -1 -1 30396 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 24.2 MiB 2.54 1219 12958 3345 8411 1202 63.2 MiB 0.13 0.00 4.38103 -136.881 -4.38103 4.38103 0.68 0.000713808 0.000661923 0.0497197 0.0461472 34 3233 38 6.89349e+06 352346 618332. 2139.56 1.82 0.207209 0.179896 25762 151098 -1 2633 17 1526 2281 168204 37222 3.963 3.963 -135.949 -3.963 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280102 0.024469 160 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.93 vpr 63.21 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30260 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.64 1259 16858 6134 8135 2589 63.2 MiB 0.17 0.00 5.51507 -165.9 -5.51507 5.51507 0.68 0.000725395 0.000673981 0.0650918 0.0604636 34 3658 48 6.89349e+06 352346 618332. 2139.56 2.28 0.229225 0.199983 25762 151098 -1 2837 19 1954 2862 268934 54976 4.90688 4.90688 -164.555 -4.90688 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0234363 0.0206451 163 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.12 vpr 63.21 MiB -1 -1 0.22 18248 1 0.03 -1 -1 30440 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 24.3 MiB 2.72 1190 15688 5780 7361 2547 63.2 MiB 0.16 0.00 5.54088 -167.719 -5.54088 5.54088 0.68 0.000734386 0.000681619 0.0611678 0.0567721 36 2845 29 6.89349e+06 352346 648988. 2245.63 3.49 0.286157 0.247754 26050 158493 -1 2560 21 1818 2649 192963 43117 4.66028 4.66028 -159.451 -4.66028 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0296369 0.0257912 166 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.48 vpr 63.12 MiB -1 -1 0.21 18252 1 0.04 -1 -1 30380 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 24.1 MiB 2.06 1192 10071 2510 6717 844 63.1 MiB 0.11 0.00 4.12652 -128.326 -4.12652 4.12652 0.69 0.000649418 0.00060208 0.0387345 0.0359498 34 3003 29 6.89349e+06 338252 618332. 2139.56 1.53 0.152768 0.133075 25762 151098 -1 2411 19 1685 2497 182458 40756 3.06536 3.06536 -118.85 -3.06536 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0259266 0.0225637 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.85 vpr 62.36 MiB -1 -1 0.18 18000 1 0.03 -1 -1 30272 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 23.9 MiB 1.56 1042 13992 4713 7020 2259 62.4 MiB 0.12 0.00 4.55135 -122.838 -4.55135 4.55135 0.68 0.000613868 0.000570758 0.0488231 0.0454177 36 2449 22 6.89349e+06 281877 648988. 2245.63 3.44 0.21916 0.18986 26050 158493 -1 2067 17 1068 1504 111942 24821 3.83 3.83 -120.094 -3.83 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0211019 0.0183784 120 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 9.93 vpr 63.35 MiB -1 -1 0.21 18396 1 0.03 -1 -1 30356 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 24.5 MiB 2.78 1364 18239 5649 8664 3926 63.3 MiB 0.19 0.00 5.39684 -169.798 -5.39684 5.39684 0.68 0.00086251 0.000802413 0.0755015 0.0701178 38 3436 29 6.89349e+06 436909 678818. 2348.85 4.13 0.34774 0.301296 26626 170182 -1 2763 22 2303 3425 225653 53510 4.45139 4.45139 -158.876 -4.45139 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.036251 0.0314897 203 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.16 vpr 62.52 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30152 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 23.9 MiB 1.96 847 14606 5701 6811 2094 62.5 MiB 0.12 0.00 3.7437 -110.885 -3.7437 3.7437 0.68 0.000565259 0.000525414 0.0488786 0.0454299 34 2267 24 6.89349e+06 253689 618332. 2139.56 1.37 0.160294 0.13974 25762 151098 -1 1904 18 1147 1538 109956 25270 3.04966 3.04966 -107.803 -3.04966 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0235335 0.020571 106 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.35 vpr 63.06 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30136 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1157 11993 3200 7722 1071 63.1 MiB 0.12 0.00 4.79572 -144.196 -4.79572 4.79572 0.68 0.00068494 0.000637252 0.0451303 0.0419244 30 2885 23 6.89349e+06 324158 556674. 1926.21 0.93 0.127296 0.112214 25186 138497 -1 2325 20 1370 2211 156865 34337 3.9931 3.9931 -137.075 -3.9931 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0261842 0.0227687 140 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.15 vpr 62.93 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30236 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 24.0 MiB 2.38 1255 9111 2360 6068 683 62.9 MiB 0.10 0.00 4.32959 -133.247 -4.32959 4.32959 0.72 0.000699444 0.000649619 0.0346275 0.03215 34 3300 43 6.89349e+06 324158 618332. 2139.56 1.81 0.19002 0.164221 25762 151098 -1 2606 22 1582 2655 192368 43364 3.5174 3.5174 -127.286 -3.5174 0 0 787024. 2723.27 0.21 0.08 0.10 -1 -1 0.21 0.0289087 0.0250544 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.35 vpr 62.50 MiB -1 -1 0.20 17680 1 0.03 -1 -1 30004 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 23.8 MiB 0.87 980 8934 2029 6214 691 62.5 MiB 0.09 0.00 4.26729 -129.015 -4.26729 4.26729 0.70 0.000638873 0.000594436 0.0298312 0.0277303 32 2710 19 6.89349e+06 366440 586450. 2029.24 2.64 0.181822 0.157018 25474 144626 -1 2224 21 1333 2551 219755 47788 3.5072 3.5072 -124.725 -3.5072 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0248425 0.0214912 123 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 7.09 vpr 63.06 MiB -1 -1 0.25 18420 1 0.03 -1 -1 30464 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 24.2 MiB 1.93 1059 12951 4043 6051 2857 63.1 MiB 0.15 0.00 4.45401 -129.14 -4.45401 4.45401 0.68 0.000820725 0.000755051 0.0536426 0.0496478 36 2779 21 6.89349e+06 324158 648988. 2245.63 2.21 0.189248 0.165094 26050 158493 -1 2152 20 1610 2295 178017 39817 3.10276 3.10276 -115.251 -3.10276 0 0 828058. 2865.25 0.24 0.07 0.14 -1 -1 0.24 0.028703 0.0254789 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.38 vpr 63.01 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 24.1 MiB 2.50 1253 16468 4636 10263 1569 63.0 MiB 0.15 0.00 4.19329 -135.481 -4.19329 4.19329 0.68 0.000712295 0.00066122 0.0621044 0.057614 36 3187 25 6.89349e+06 338252 648988. 2245.63 1.98 0.196369 0.171498 26050 158493 -1 2602 20 1650 2573 193342 42638 3.59435 3.59435 -129.638 -3.59435 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0275182 0.0239212 154 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.17 vpr 63.14 MiB -1 -1 0.25 18392 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 382 305 1 243 89 17 17 289 -1 unnamed_device 24.2 MiB 2.36 1372 15929 5275 8784 1870 63.1 MiB 0.18 0.00 4.08378 -136.371 -4.08378 4.08378 0.68 0.000580891 0.000533851 0.0582564 0.0538942 34 3362 24 6.89349e+06 352346 618332. 2139.56 1.83 0.204431 0.178222 25762 151098 -1 2766 19 1860 2580 210207 46305 3.09876 3.09876 -128.874 -3.09876 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0281805 0.0246046 162 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.15 vpr 62.55 MiB -1 -1 0.22 18368 1 0.03 -1 -1 30276 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 24.1 MiB 1.57 1045 14593 4202 8807 1584 62.6 MiB 0.13 0.00 4.52205 -134.216 -4.52205 4.52205 0.71 0.000638346 0.000593628 0.0521411 0.0484786 34 2490 46 6.89349e+06 295971 618332. 2139.56 1.67 0.200604 0.174821 25762 151098 -1 2130 21 1363 2223 147926 34667 3.74036 3.74036 -127.635 -3.74036 0 0 787024. 2723.27 0.24 0.07 0.15 -1 -1 0.24 0.0262391 0.0228307 128 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.33 vpr 62.81 MiB -1 -1 0.21 18344 1 0.03 -1 -1 30272 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.1 MiB 1.93 987 13883 3666 8021 2196 62.8 MiB 0.13 0.00 4.84598 -138.838 -4.84598 4.84598 0.68 0.000652181 0.000606766 0.0502547 0.0467309 34 2558 31 6.89349e+06 310065 618332. 2139.56 1.47 0.186785 0.162651 25762 151098 -1 2181 19 1428 2105 149429 34251 3.7003 3.7003 -129.472 -3.7003 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0243279 0.0211554 135 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 8.60 vpr 63.18 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30420 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 373 299 1 227 86 17 17 289 -1 unnamed_device 24.3 MiB 2.16 1211 14828 4402 8079 2347 63.2 MiB 0.15 0.00 4.74072 -143.031 -4.74072 4.74072 0.68 0.000720572 0.000669856 0.0587761 0.0545739 36 3108 20 6.89349e+06 324158 648988. 2245.63 3.50 0.258406 0.223992 26050 158493 -1 2499 22 1859 2953 201173 44890 3.8508 3.8508 -134.377 -3.8508 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.030632 0.0266387 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.15 vpr 63.41 MiB -1 -1 0.26 18216 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 24.4 MiB 2.68 1258 10979 3006 7476 497 63.4 MiB 0.12 0.00 4.38808 -134.784 -4.38808 4.38808 0.68 0.000735755 0.000683128 0.0432488 0.0401098 34 3563 33 6.89349e+06 352346 618332. 2139.56 3.56 0.282841 0.243426 25762 151098 -1 2828 18 1981 2913 201286 46276 3.89396 3.89396 -136.54 -3.89396 0 0 787024. 2723.27 0.22 0.06 0.14 -1 -1 0.22 0.0233739 0.0205403 166 77 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.91 vpr 62.27 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30512 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 23.7 MiB 1.32 732 6839 1674 4948 217 62.3 MiB 0.07 0.00 3.52919 -107.237 -3.52919 3.52919 0.69 0.000537311 0.000497782 0.024177 0.0224721 30 2067 32 6.89349e+06 211408 556674. 1926.21 2.86 0.16305 0.140161 25186 138497 -1 1612 19 901 1393 89815 21726 2.59451 2.59451 -100.794 -2.59451 0 0 706193. 2443.58 0.19 0.05 0.08 -1 -1 0.19 0.020611 0.0178854 96 23 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.99 vpr 63.03 MiB -1 -1 0.24 18092 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 24.1 MiB 1.64 1174 13260 4046 7113 2101 63.0 MiB 0.13 0.00 4.29355 -148.609 -4.29355 4.29355 0.67 0.000670162 0.000623326 0.0505395 0.0469619 36 2755 25 6.89349e+06 281877 648988. 2245.63 3.41 0.236418 0.204825 26050 158493 -1 2310 19 1602 2184 177150 37060 3.48465 3.48465 -140.596 -3.48465 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0248545 0.0215813 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.36 vpr 63.11 MiB -1 -1 0.18 18416 1 0.03 -1 -1 30296 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1358 17711 6857 9017 1837 63.1 MiB 0.19 0.00 5.47492 -162.011 -5.47492 5.47492 0.68 0.000763814 0.000709031 0.0707719 0.0657043 36 3307 24 6.89349e+06 352346 648988. 2245.63 3.54 0.301061 0.261431 26050 158493 -1 2710 21 1821 2824 198903 44515 4.51965 4.51965 -153.16 -4.51965 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0304579 0.0264908 168 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.73 vpr 63.00 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 24.2 MiB 2.02 1178 13694 4056 7919 1719 63.0 MiB 0.14 0.00 4.47216 -142.443 -4.47216 4.47216 0.68 0.000684126 0.000635414 0.0520104 0.0483357 34 2809 24 6.89349e+06 310065 618332. 2139.56 1.79 0.162562 0.14262 25762 151098 -1 2332 18 1519 2197 170175 37027 3.02241 3.02241 -123.52 -3.02241 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0245036 0.021335 144 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.74 vpr 62.57 MiB -1 -1 0.23 18084 1 0.03 -1 -1 30336 -1 -1 27 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 23.8 MiB 1.45 951 12563 3271 8399 893 62.6 MiB 0.11 0.00 4.13238 -126.06 -4.13238 4.13238 0.68 0.000588611 0.000547406 0.0393814 0.036535 34 2327 25 6.89349e+06 380534 618332. 2139.56 1.42 0.156734 0.135762 25762 151098 -1 2025 22 1297 2018 167340 37083 3.77555 3.77555 -130.14 -3.77555 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0246053 0.0212908 118 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 9.70 vpr 63.22 MiB -1 -1 0.26 18412 1 0.03 -1 -1 30336 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 24.2 MiB 3.24 1567 13555 4048 7346 2161 63.2 MiB 0.16 0.00 6.44359 -187.4 -6.44359 6.44359 0.68 0.000824925 0.000766822 0.057727 0.0536022 36 3996 24 6.89349e+06 380534 648988. 2245.63 3.35 0.229504 0.200317 26050 158493 -1 3297 22 2374 3728 349639 71806 5.33889 5.33889 -177.809 -5.33889 0 0 828058. 2865.25 0.22 0.12 0.14 -1 -1 0.22 0.034248 0.0297209 188 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.85 vpr 62.86 MiB -1 -1 0.23 18184 1 0.03 -1 -1 30548 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 24.0 MiB 1.42 1067 14035 3934 8096 2005 62.9 MiB 0.13 0.00 4.72832 -145.11 -4.72832 4.72832 0.67 0.000684339 0.000636541 0.0538183 0.0500717 34 2595 24 6.89349e+06 295971 618332. 2139.56 1.52 0.192845 0.168887 25762 151098 -1 2235 22 1787 2518 195167 43859 3.9007 3.9007 -137.409 -3.9007 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0285362 0.0247791 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.92 vpr 62.34 MiB -1 -1 0.22 17748 1 0.02 -1 -1 30456 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.8 MiB 0.67 695 14713 4314 8460 1939 62.3 MiB 0.12 0.00 3.6346 -100.535 -3.6346 3.6346 0.72 0.000533681 0.000497103 0.0457832 0.0424758 28 1921 19 6.89349e+06 338252 531479. 1839.03 2.49 0.186986 0.161801 24610 126494 -1 1691 22 1132 2010 173636 39630 2.82941 2.82941 -100.021 -2.82941 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0220061 0.0189868 94 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.71 vpr 62.94 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30136 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 24.0 MiB 1.92 1217 14679 5443 7869 1367 62.9 MiB 0.15 0.00 5.41897 -143.636 -5.41897 5.41897 0.69 0.000702053 0.000651353 0.0558585 0.0518406 34 3127 23 6.89349e+06 324158 618332. 2139.56 1.89 0.165319 0.145314 25762 151098 -1 2493 23 1492 2833 239730 50744 4.52875 4.52875 -141.093 -4.52875 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0303435 0.0263084 149 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.18 vpr 62.27 MiB -1 -1 0.20 17776 1 0.03 -1 -1 30080 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.7 MiB 0.90 843 14303 4411 8253 1639 62.3 MiB 0.11 0.00 3.54325 -111.744 -3.54325 3.54325 0.69 0.000563977 0.000524428 0.0457911 0.0425501 34 2087 30 6.89349e+06 267783 618332. 2139.56 1.49 0.160965 0.140319 25762 151098 -1 1778 19 1107 1988 160160 33986 2.69866 2.69866 -106.27 -2.69866 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0204975 0.0177587 98 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.13 vpr 62.55 MiB -1 -1 0.24 18004 1 0.03 -1 -1 30376 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 23.9 MiB 1.40 773 9160 2547 5968 645 62.5 MiB 0.09 0.00 4.07968 -116.565 -4.07968 4.07968 0.82 0.00047108 0.000434854 0.0252048 0.0231701 36 2054 21 6.89349e+06 281877 648988. 2245.63 1.80 0.1392 0.119851 26050 158493 -1 1793 19 1139 1633 120373 28155 3.23906 3.23906 -112.268 -3.23906 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0218469 0.0189473 113 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.78 vpr 62.89 MiB -1 -1 0.25 18260 1 0.03 -1 -1 30296 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 23.9 MiB 3.06 1139 8919 2183 6102 634 62.9 MiB 0.10 0.00 4.48897 -131.496 -4.48897 4.48897 0.69 0.000688926 0.000640412 0.0340907 0.0316632 34 3051 27 6.89349e+06 366440 618332. 2139.56 1.84 0.178061 0.153818 25762 151098 -1 2534 20 1630 2380 194289 42924 3.74455 3.74455 -127.937 -3.74455 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0266561 0.0231533 154 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.71 vpr 63.02 MiB -1 -1 0.24 18160 1 0.03 -1 -1 30332 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 24.2 MiB 2.22 1122 9158 2488 6122 548 63.0 MiB 0.10 0.00 4.88804 -152.378 -4.88804 4.88804 0.68 0.000713617 0.000655436 0.0372018 0.0344225 36 3060 23 6.89349e+06 310065 648988. 2245.63 3.53 0.234516 0.201796 26050 158493 -1 2572 21 1939 2826 207505 46566 4.20505 4.20505 -147.248 -4.20505 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0282949 0.0246008 151 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.89 vpr 63.23 MiB -1 -1 0.22 18292 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 24.3 MiB 1.97 1252 12951 3653 7742 1556 63.2 MiB 0.15 0.00 5.47602 -157.843 -5.47602 5.47602 0.77 0.000702719 0.000653522 0.0566845 0.0526397 36 3028 40 6.89349e+06 324158 648988. 2245.63 1.88 0.213571 0.186251 26050 158493 -1 2626 23 1726 2584 195995 43414 4.44939 4.44939 -152.134 -4.44939 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0300566 0.026074 150 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.24 vpr 62.34 MiB -1 -1 0.23 18100 1 0.03 -1 -1 30072 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.7 MiB 1.67 881 10726 3077 6717 932 62.3 MiB 0.10 0.00 4.53843 -126.576 -4.53843 4.53843 0.68 0.000591756 0.000550915 0.0394419 0.0367284 34 2186 24 6.89349e+06 211408 618332. 2139.56 2.78 0.20737 0.179025 25762 151098 -1 1901 14 900 1276 93884 21447 3.19321 3.19321 -115.532 -3.19321 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0174521 0.0152694 105 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.51 vpr 62.87 MiB -1 -1 0.24 18148 1 0.03 -1 -1 30444 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.81 1053 14483 4664 7716 2103 62.9 MiB 0.13 0.00 3.74261 -124.975 -3.74261 3.74261 0.68 0.000635653 0.000591189 0.0528967 0.0491263 36 2563 23 6.89349e+06 281877 648988. 2245.63 1.81 0.155402 0.136284 26050 158493 -1 2164 22 1485 2076 149242 33231 3.09511 3.09511 -121.194 -3.09511 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0270726 0.0234689 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.43 vpr 62.77 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30504 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 23.9 MiB 2.04 1173 16273 5377 8794 2102 62.8 MiB 0.15 0.00 3.817 -113.195 -3.817 3.817 0.68 0.000651254 0.000604879 0.0565428 0.0524856 34 2618 31 6.89349e+06 366440 618332. 2139.56 1.50 0.16599 0.145502 25762 151098 -1 2167 19 1424 2168 148471 34334 3.03691 3.03691 -109.432 -3.03691 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0247654 0.0215489 142 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.60 vpr 62.45 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30524 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 1.27 909 14123 3958 8851 1314 62.4 MiB 0.12 0.00 4.4511 -113.819 -4.4511 4.4511 0.67 0.000466434 0.000428603 0.0476618 0.0443241 34 2337 28 6.89349e+06 324158 618332. 2139.56 1.50 0.162636 0.141612 25762 151098 -1 1901 21 1023 1801 147034 33072 3.68256 3.68256 -111.515 -3.68256 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0234144 0.020225 119 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.14 vpr 62.43 MiB -1 -1 0.16 18384 1 0.03 -1 -1 30380 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 23.9 MiB 1.88 979 14663 6207 7722 734 62.4 MiB 0.13 0.00 4.62158 -135.813 -4.62158 4.62158 0.67 0.00064396 0.000598312 0.0539029 0.0500773 36 2485 25 6.89349e+06 295971 648988. 2245.63 3.46 0.232779 0.201587 26050 158493 -1 2130 21 1831 2535 203191 44657 3.68864 3.68864 -131.093 -3.68864 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0254535 0.0220585 131 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.35 vpr 63.04 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30304 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 24.1 MiB 1.69 1197 9966 2574 6122 1270 63.0 MiB 0.10 0.00 4.03794 -140.884 -4.03794 4.03794 0.68 0.000666655 0.000619238 0.0383891 0.0356724 34 2973 29 6.89349e+06 281877 618332. 2139.56 1.81 0.153971 0.133933 25762 151098 -1 2572 20 1685 2314 206518 44032 3.1324 3.1324 -129.633 -3.1324 0 0 787024. 2723.27 0.21 0.08 0.16 -1 -1 0.21 0.0257458 0.0223676 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.66 vpr 62.44 MiB -1 -1 0.23 17524 1 0.03 -1 -1 30320 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 23.8 MiB 0.81 933 8827 1959 6407 461 62.4 MiB 0.09 0.00 4.68742 -132.125 -4.68742 4.68742 0.68 0.000647852 0.0006034 0.0287044 0.0266218 30 2469 28 6.89349e+06 436909 556674. 1926.21 1.03 0.113236 0.0987556 25186 138497 -1 1985 21 973 1855 124155 27575 3.7575 3.7575 -123.081 -3.7575 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0258281 0.0225127 129 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.70 vpr 63.12 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30584 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 2.04 993 15063 4441 7937 2685 63.1 MiB 0.15 0.00 4.79682 -147.448 -4.79682 4.79682 0.68 0.00067811 0.000626997 0.0577457 0.0536543 34 3341 42 6.89349e+06 324158 618332. 2139.56 2.60 0.203813 0.178452 25762 151098 -1 2507 20 1793 2731 251308 57180 3.9366 3.9366 -137.622 -3.9366 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0280953 0.0243904 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.88 vpr 63.18 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30280 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 385 308 1 244 90 17 17 289 -1 unnamed_device 24.2 MiB 2.15 1227 14562 3938 8589 2035 63.2 MiB 0.15 0.00 5.38159 -164.838 -5.38159 5.38159 0.73 0.000746778 0.000694098 0.0567133 0.0527023 36 3243 27 6.89349e+06 366440 648988. 2245.63 3.67 0.269728 0.234607 26050 158493 -1 2568 22 2110 2989 235894 51836 4.67469 4.67469 -163.039 -4.67469 0 0 828058. 2865.25 0.24 0.07 0.15 -1 -1 0.24 0.0226463 0.0197547 163 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 8.67 vpr 63.19 MiB -1 -1 0.20 18204 1 0.03 -1 -1 30320 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 24.2 MiB 2.07 1249 15366 4699 7930 2737 63.2 MiB 0.16 0.00 4.52977 -146.574 -4.52977 4.52977 0.68 0.000768098 0.000714055 0.0597117 0.0554454 38 3101 27 6.89349e+06 366440 678818. 2348.85 3.65 0.281103 0.243655 26626 170182 -1 2575 23 1733 2651 221947 45896 3.99995 3.99995 -142.366 -3.99995 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0320862 0.0278723 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.45 vpr 62.51 MiB -1 -1 0.19 17964 1 0.03 -1 -1 30304 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 23.9 MiB 1.97 905 12323 3823 7116 1384 62.5 MiB 0.12 0.00 4.24433 -127.173 -4.24433 4.24433 0.68 0.000609576 0.000566346 0.0437906 0.0406898 34 2274 35 6.89349e+06 295971 618332. 2139.56 1.66 0.1688 0.146539 25762 151098 -1 1900 18 1130 1599 128112 27804 3.10946 3.10946 -111.538 -3.10946 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0208135 0.0180779 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.41 vpr 63.06 MiB -1 -1 0.22 18132 1 0.03 -1 -1 30372 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 24.1 MiB 2.85 1252 13143 3283 8520 1340 63.1 MiB 0.14 0.00 5.23091 -159.91 -5.23091 5.23091 0.68 0.000725079 0.000673819 0.0521396 0.0484364 34 3195 38 6.89349e+06 352346 618332. 2139.56 1.66 0.209046 0.182099 25762 151098 -1 2683 19 1969 2727 216393 49027 4.70289 4.70289 -164.912 -4.70289 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0268991 0.0234204 161 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.70 vpr 62.95 MiB -1 -1 0.17 18204 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.1 MiB 1.15 1135 15255 4537 8764 1954 63.0 MiB 0.15 0.00 5.17695 -153.732 -5.17695 5.17695 0.68 0.000693742 0.000645377 0.0578766 0.0538123 34 2919 21 6.89349e+06 324158 618332. 2139.56 1.62 0.192767 0.168741 25762 151098 -1 2433 22 1711 2956 258805 55965 4.1143 4.1143 -143.928 -4.1143 0 0 787024. 2723.27 0.24 0.10 0.13 -1 -1 0.24 0.028325 0.0245556 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.63 vpr 63.09 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30216 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 24.2 MiB 2.18 1193 13505 4546 7143 1816 63.1 MiB 0.14 0.00 5.02824 -144.831 -5.02824 5.02824 0.71 0.00069036 0.000641068 0.0525096 0.0488141 36 2814 25 6.89349e+06 324158 648988. 2245.63 1.56 0.157897 0.138522 26050 158493 -1 2418 20 1423 2236 198439 41166 4.31415 4.31415 -140.912 -4.31415 0 0 828058. 2865.25 0.22 0.08 0.10 -1 -1 0.22 0.0263508 0.0228884 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.60 vpr 63.10 MiB -1 -1 0.19 18320 1 0.03 -1 -1 30368 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 24.4 MiB 2.68 1197 15103 4411 8230 2462 63.1 MiB 0.15 0.00 4.851 -140.164 -4.851 4.851 0.68 0.000719371 0.000668375 0.0580069 0.0538626 36 2863 21 6.89349e+06 366440 648988. 2245.63 2.04 0.202959 0.177377 26050 158493 -1 2495 20 1595 2287 181696 38931 3.88729 3.88729 -134.431 -3.88729 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0277246 0.0240826 162 83 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.36 vpr 62.91 MiB -1 -1 0.20 18248 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 24.0 MiB 2.51 1204 16599 6004 7939 2656 62.9 MiB 0.17 0.00 5.44287 -158.373 -5.44287 5.44287 0.68 0.00071785 0.000666572 0.064359 0.0597539 34 3283 32 6.89349e+06 324158 618332. 2139.56 1.94 0.214044 0.187206 25762 151098 -1 2597 23 1963 2925 216361 49453 4.61969 4.61969 -154.947 -4.61969 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0306821 0.0266176 155 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.98 vpr 63.17 MiB -1 -1 0.26 18196 1 0.03 -1 -1 30304 -1 -1 30 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1306 12535 3228 8012 1295 63.2 MiB 0.12 0.00 4.60117 -137.507 -4.60117 4.60117 0.67 0.000711608 0.000660821 0.0460842 0.0427905 36 2897 26 6.89349e+06 422815 648988. 2245.63 1.79 0.188848 0.16409 26050 158493 -1 2382 22 1487 2016 135818 31245 3.54206 3.54206 -127.169 -3.54206 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0297229 0.0257588 166 85 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 6.62 vpr 62.16 MiB -1 -1 0.21 17764 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.6 MiB 1.08 733 12331 3194 7563 1574 62.2 MiB 0.10 0.00 4.02268 -117.682 -4.02268 4.02268 0.68 0.000553956 0.000516118 0.0406898 0.0378723 34 1915 37 6.89349e+06 239595 618332. 2139.56 2.74 0.209324 0.180742 25762 151098 -1 1583 17 919 1489 101979 24094 2.86616 2.86616 -105.485 -2.86616 0 0 787024. 2723.27 0.22 0.05 0.15 -1 -1 0.22 0.018417 0.0161591 96 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.02 vpr 63.13 MiB -1 -1 0.24 18080 1 0.03 -1 -1 30436 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 24.2 MiB 1.97 1366 14741 4940 7308 2493 63.1 MiB 0.14 0.00 5.7749 -170.888 -5.7749 5.7749 0.67 0.000724666 0.000672068 0.0564156 0.0523254 38 2766 20 6.89349e+06 352346 678818. 2348.85 2.07 0.196831 0.172375 26626 170182 -1 2489 21 1542 2193 169330 36565 4.41358 4.41358 -149.332 -4.41358 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0293593 0.0255638 156 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.27 vpr 63.31 MiB -1 -1 0.20 18224 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 24.3 MiB 2.82 1405 14543 3790 8651 2102 63.3 MiB 0.15 0.00 5.38563 -174.831 -5.38563 5.38563 0.68 0.000589778 0.000540273 0.0569682 0.0527492 36 3143 23 6.89349e+06 352346 648988. 2245.63 3.59 0.267477 0.231869 26050 158493 -1 2788 23 2224 3211 255670 54788 4.79045 4.79045 -171.521 -4.79045 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0332501 0.0289401 171 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 6.17 vpr 62.36 MiB -1 -1 0.22 17856 1 0.03 -1 -1 30356 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 23.8 MiB 2.10 852 8626 2126 6029 471 62.4 MiB 0.08 0.00 4.14342 -115.954 -4.14342 4.14342 0.68 0.000578217 0.000538435 0.0300715 0.0279852 34 2167 20 6.89349e+06 253689 618332. 2139.56 1.32 0.140381 0.121565 25762 151098 -1 1869 21 1272 1680 114108 27008 3.08576 3.08576 -107.616 -3.08576 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0232508 0.0201319 108 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.75 vpr 62.30 MiB -1 -1 0.17 17872 1 0.03 -1 -1 30348 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.7 MiB 0.93 843 11783 3233 6725 1825 62.3 MiB 0.10 0.00 3.90644 -115.807 -3.90644 3.90644 0.62 0.000551823 0.00051362 0.0382537 0.0356391 26 2165 23 6.89349e+06 281877 503264. 1741.40 2.10 0.160227 0.138939 24322 120374 -1 1999 20 1253 2044 176217 38787 2.84601 2.84601 -111.426 -2.84601 0 0 618332. 2139.56 0.17 0.07 0.11 -1 -1 0.17 0.021057 0.0182075 99 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 8.23 vpr 63.01 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30556 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.1 MiB 1.90 1150 8727 2018 5615 1094 63.0 MiB 0.10 0.00 4.64652 -149.201 -4.64652 4.64652 0.77 0.000703572 0.000653539 0.0343992 0.0319982 36 2852 22 6.89349e+06 324158 648988. 2245.63 3.32 0.228654 0.197115 26050 158493 -1 2401 21 1728 2486 197683 41996 3.7788 3.7788 -141.038 -3.7788 0 0 828058. 2865.25 0.29 0.05 0.14 -1 -1 0.29 0.015374 0.0135936 145 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.74 vpr 63.05 MiB -1 -1 0.24 18176 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 24.1 MiB 2.01 1167 15639 4762 8859 2018 63.0 MiB 0.15 0.00 4.99039 -145.722 -4.99039 4.99039 0.69 0.00070699 0.000656391 0.0601118 0.055841 36 2585 21 6.89349e+06 324158 648988. 2245.63 1.77 0.196287 0.171915 26050 158493 -1 2196 19 1312 1916 134550 31443 4.22525 4.22525 -139.154 -4.22525 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0259131 0.022542 149 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 4.62 vpr 62.98 MiB -1 -1 0.21 18044 1 0.03 -1 -1 30232 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.1 MiB 0.63 1179 13092 3559 8453 1080 63.0 MiB 0.14 0.00 5.17121 -146.734 -5.17121 5.17121 0.67 0.000724033 0.000673575 0.043706 0.0404953 30 2906 22 6.89349e+06 507378 556674. 1926.21 1.13 0.128477 0.113126 25186 138497 -1 2340 25 1609 3088 192920 45460 4.11249 4.11249 -141.088 -4.11249 0 0 706193. 2443.58 0.19 0.09 0.13 -1 -1 0.19 0.0330255 0.0286262 157 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.98 vpr 62.79 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30356 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 24.0 MiB 1.48 1065 7191 1699 5079 413 62.8 MiB 0.08 0.00 3.88834 -114.437 -3.88834 3.88834 0.68 0.000621353 0.000575627 0.0260267 0.0242019 34 2645 26 6.89349e+06 352346 618332. 2139.56 1.68 0.152243 0.13158 25762 151098 -1 2237 20 1738 2562 187968 42121 2.95776 2.95776 -105.775 -2.95776 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0247213 0.0214314 136 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.60 vpr 62.34 MiB -1 -1 0.19 17952 1 0.02 -1 -1 30436 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 23.7 MiB 1.49 671 12416 5195 5941 1280 62.3 MiB 0.09 0.00 4.39223 -112.843 -4.39223 4.39223 0.68 0.000544952 0.00050697 0.041701 0.0388089 38 1671 32 6.89349e+06 281877 678818. 2348.85 3.37 0.198927 0.171543 26626 170182 -1 1407 17 1024 1491 107563 26317 3.6986 3.6986 -109.598 -3.6986 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0187226 0.0161985 106 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.57 vpr 63.44 MiB -1 -1 0.27 18668 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 24.6 MiB 3.51 1558 16615 4500 10327 1788 63.4 MiB 0.18 0.00 4.61521 -148.623 -4.61521 4.61521 0.69 0.000806058 0.000748595 0.0687869 0.0638458 36 3673 23 6.89349e+06 380534 648988. 2245.63 3.05 0.233238 0.20437 26050 158493 -1 3191 24 2272 3571 278292 59853 4.16294 4.16294 -150.154 -4.16294 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0359058 0.031144 185 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.34 vpr 63.10 MiB -1 -1 0.26 18228 1 0.03 -1 -1 30292 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 24.1 MiB 2.06 1047 15639 5809 6811 3019 63.1 MiB 0.15 0.00 5.48492 -159.854 -5.48492 5.48492 0.68 0.000638086 0.000586154 0.05956 0.0552828 36 3015 30 6.89349e+06 338252 648988. 2245.63 2.35 0.207634 0.18124 26050 158493 -1 2282 21 1981 2827 183364 45738 4.50245 4.50245 -153.354 -4.50245 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0284792 0.0247485 155 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.78 vpr 62.78 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30396 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 331 280 1 221 84 17 17 289 -1 unnamed_device 24.0 MiB 2.35 998 16737 6124 7825 2788 62.8 MiB 0.15 0.00 4.30139 -136.522 -4.30139 4.30139 0.68 0.000657095 0.000610133 0.0625288 0.0581267 36 2611 25 6.89349e+06 281877 648988. 2245.63 3.51 0.246328 0.213896 26050 158493 -1 2181 19 1550 2018 174734 37539 3.6675 3.6675 -136.623 -3.6675 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0244123 0.0212339 136 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.53 vpr 62.78 MiB -1 -1 0.19 18372 1 0.03 -1 -1 30356 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 24.0 MiB 2.10 1090 9571 2534 6373 664 62.8 MiB 0.10 0.00 5.23032 -144.251 -5.23032 5.23032 0.68 0.000672451 0.000625545 0.0366806 0.0341122 30 2676 38 6.89349e+06 295971 556674. 1926.21 2.67 0.206907 0.178958 25186 138497 -1 2130 21 1071 1615 102090 23111 3.50786 3.50786 -126.051 -3.50786 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0266376 0.0231422 134 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 6.27 vpr 63.05 MiB -1 -1 0.19 18256 1 0.03 -1 -1 30512 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1202 13751 3835 8049 1867 63.0 MiB 0.14 0.00 4.46995 -129.311 -4.46995 4.46995 0.72 0.000733751 0.000681657 0.0532819 0.0494446 34 3036 19 6.89349e+06 366440 618332. 2139.56 1.41 0.183002 0.159883 25762 151098 -1 2515 20 1830 2785 182795 43219 3.97726 3.97726 -130.915 -3.97726 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0283912 0.0246721 163 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.60 vpr 62.85 MiB -1 -1 0.19 18212 1 0.03 -1 -1 30264 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 24.0 MiB 2.22 1079 13505 3291 8862 1352 62.9 MiB 0.12 0.00 4.22645 -118.107 -4.22645 4.22645 0.68 0.000658376 0.000611311 0.0490903 0.0456641 36 2650 30 6.89349e+06 338252 648988. 2245.63 3.43 0.239116 0.206749 26050 158493 -1 2237 22 1376 2100 160748 37276 3.5733 3.5733 -114.748 -3.5733 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0271366 0.0235148 140 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 8.30 vpr 62.90 MiB -1 -1 0.22 18292 1 0.03 -1 -1 30464 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.0 MiB 2.60 1201 14828 4491 8253 2084 62.9 MiB 0.15 0.00 4.92758 -154.781 -4.92758 4.92758 0.68 0.000711 0.000660463 0.0577055 0.0535713 36 2974 20 6.89349e+06 310065 648988. 2245.63 2.76 0.197585 0.173761 26050 158493 -1 2570 23 1760 2903 286164 58396 3.9208 3.9208 -138.75 -3.9208 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0298533 0.0259172 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.19 vpr 63.28 MiB -1 -1 0.24 18436 1 0.03 -1 -1 30092 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 24.3 MiB 2.37 1278 15969 5302 7451 3216 63.3 MiB 0.15 0.00 4.11194 -136.871 -4.11194 4.11194 0.69 0.000754931 0.000693029 0.0623208 0.0572571 34 3529 33 6.89349e+06 366440 618332. 2139.56 1.86 0.219574 0.191002 25762 151098 -1 2607 21 1935 2630 187376 44216 3.44175 3.44175 -130.508 -3.44175 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.029924 0.025999 167 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.31 vpr 62.44 MiB -1 -1 0.19 17944 1 0.03 -1 -1 30304 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 23.8 MiB 1.25 628 7956 1799 5721 436 62.4 MiB 0.08 0.00 4.24503 -122.739 -4.24503 4.24503 0.68 0.000577792 0.000537405 0.0279715 0.0260318 34 1772 23 6.89349e+06 281877 618332. 2139.56 1.33 0.140267 0.121316 25762 151098 -1 1416 20 1270 1714 104194 26944 3.11671 3.11671 -110.381 -3.11671 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.022399 0.0193707 110 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.45 vpr 62.34 MiB -1 -1 0.23 18324 1 0.03 -1 -1 30484 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 310 266 1 198 83 17 17 289 -1 unnamed_device 23.9 MiB 1.72 1048 12863 3756 7750 1357 62.3 MiB 0.12 0.00 4.21989 -132.438 -4.21989 4.21989 0.68 0.00063304 0.000587992 0.0471189 0.0438255 34 2769 27 6.89349e+06 267783 618332. 2139.56 1.80 0.156939 0.13715 25762 151098 -1 2297 22 1779 2470 220677 46955 3.55295 3.55295 -130.18 -3.55295 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0260268 0.0224859 124 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.17 vpr 62.89 MiB -1 -1 0.17 18468 1 0.02 -1 -1 30368 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 24.1 MiB 1.55 1137 13477 4102 7180 2195 62.9 MiB 0.13 0.00 4.87863 -139.519 -4.87863 4.87863 0.69 0.000662513 0.000616046 0.050165 0.0466426 34 2786 29 6.89349e+06 310065 618332. 2139.56 1.80 0.186528 0.162588 25762 151098 -1 2336 20 1569 2472 202216 45007 3.8758 3.8758 -132.732 -3.8758 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0258052 0.0224146 137 33 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 7.75 vpr 62.16 MiB -1 -1 0.24 17940 1 0.03 -1 -1 30464 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 2.15 741 7132 1582 5226 324 62.2 MiB 0.07 0.00 4.21347 -110.205 -4.21347 4.21347 0.68 0.000560647 0.00052249 0.025201 0.0234548 36 1970 26 6.89349e+06 267783 648988. 2245.63 2.79 0.195558 0.167558 26050 158493 -1 1708 21 1033 1418 102366 24026 2.9515 2.9515 -101.659 -2.9515 0 0 828058. 2865.25 0.28 0.03 0.16 -1 -1 0.28 0.0123082 0.0108121 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.47 vpr 62.51 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30068 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 23.8 MiB 1.89 990 11652 3107 7306 1239 62.5 MiB 0.10 0.00 4.18333 -131.846 -4.18333 4.18333 0.75 0.000594153 0.000552461 0.0404096 0.0375923 34 2497 36 6.89349e+06 253689 618332. 2139.56 1.77 0.168554 0.146456 25762 151098 -1 2108 20 1418 1990 164645 35637 3.33911 3.33911 -125.551 -3.33911 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0229957 0.0199521 114 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.73 vpr 63.17 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30536 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 373 300 1 237 90 17 17 289 -1 unnamed_device 24.3 MiB 2.02 1223 15366 4453 8707 2206 63.2 MiB 0.15 0.00 4.62897 -148.141 -4.62897 4.62897 0.68 0.00072715 0.000675673 0.0578551 0.0537528 34 3088 26 6.89349e+06 380534 618332. 2139.56 1.75 0.203785 0.178024 25762 151098 -1 2624 21 2025 2784 225288 48923 3.81065 3.81065 -141.55 -3.81065 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0290103 0.0252398 161 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.11 vpr 62.41 MiB -1 -1 0.23 17980 1 0.03 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 23.7 MiB 1.76 784 6616 1386 4941 289 62.4 MiB 0.07 0.00 3.61555 -111.527 -3.61555 3.61555 0.68 0.000566529 0.000526025 0.0235755 0.0218991 34 2257 32 6.89349e+06 239595 618332. 2139.56 1.48 0.143365 0.123283 25762 151098 -1 1840 21 1118 1559 126902 29314 2.80111 2.80111 -102.063 -2.80111 0 0 787024. 2723.27 0.21 0.06 0.15 -1 -1 0.21 0.0228764 0.0197898 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.79 vpr 63.03 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30024 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 24.1 MiB 2.19 1232 13883 4397 7250 2236 63.0 MiB 0.14 0.00 4.30445 -129.833 -4.30445 4.30445 0.70 0.000700537 0.000651543 0.0537901 0.049988 34 3088 24 6.89349e+06 310065 618332. 2139.56 1.63 0.190284 0.165962 25762 151098 -1 2505 20 1424 2090 159741 35454 3.49095 3.49095 -126.618 -3.49095 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0269363 0.0234426 146 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 9.62 vpr 63.19 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30232 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 24.2 MiB 2.68 1374 16127 5335 8292 2500 63.2 MiB 0.18 0.00 4.99104 -161.962 -4.99104 4.99104 0.69 0.000741467 0.000686837 0.0633813 0.0587501 38 3351 24 6.89349e+06 366440 678818. 2348.85 3.84 0.28385 0.24585 26626 170182 -1 2835 21 2331 3297 257631 54905 4.08179 4.08179 -152.863 -4.08179 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0298115 0.0258956 167 91 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.52 vpr 62.81 MiB -1 -1 0.22 18072 1 0.03 -1 -1 30428 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 24.3 MiB 2.06 1102 7736 1887 5035 814 62.8 MiB 0.08 0.00 3.7859 -118.769 -3.7859 3.7859 0.68 0.000614564 0.000570725 0.0286054 0.0265436 34 2661 27 6.89349e+06 253689 618332. 2139.56 1.63 0.155954 0.13468 25762 151098 -1 2286 22 1581 2190 195646 40939 2.91016 2.91016 -116.403 -2.91016 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0259191 0.0224239 124 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.49 vpr 62.33 MiB -1 -1 0.18 17996 1 0.03 -1 -1 30336 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 23.7 MiB 1.23 923 8804 2372 6054 378 62.3 MiB 0.09 0.00 4.24743 -129.394 -4.24743 4.24743 0.67 0.000609847 0.000568096 0.0320525 0.029848 36 2225 43 6.89349e+06 253689 648988. 2245.63 3.52 0.205791 0.176888 26050 158493 -1 2047 20 1283 1926 179909 39070 3.36506 3.36506 -124.98 -3.36506 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0234506 0.0203181 115 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.02 vpr 62.72 MiB -1 -1 0.20 18180 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1050 14828 5325 7370 2133 62.7 MiB 0.13 0.00 4.90028 -137.564 -4.90028 4.90028 0.68 0.000651992 0.000605445 0.0532771 0.0494738 34 2608 24 6.89349e+06 310065 618332. 2139.56 1.33 0.155164 0.136463 25762 151098 -1 2257 21 1429 2017 147852 33854 3.75346 3.75346 -131.737 -3.75346 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0262297 0.0227133 133 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.69 vpr 62.80 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30136 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 29 32 324 268 1 208 86 17 17 289 -1 unnamed_device 24.0 MiB 1.74 1098 14450 3824 8602 2024 62.8 MiB 0.13 0.00 4.06068 -112.703 -4.06068 4.06068 0.68 0.000647374 0.000602478 0.051651 0.0480239 34 2543 49 6.89349e+06 352346 618332. 2139.56 3.04 0.262186 0.226343 25762 151098 -1 2152 21 1448 2024 148243 34376 3.09046 3.09046 -106.337 -3.09046 0 0 787024. 2723.27 0.22 0.08 0.13 -1 -1 0.22 0.0281719 0.024626 138 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.10 vpr 63.07 MiB -1 -1 0.25 18148 1 0.03 -1 -1 30468 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 24.1 MiB 2.28 1257 16078 5484 8239 2355 63.1 MiB 0.17 0.00 5.66698 -180.512 -5.66698 5.66698 0.68 0.000897301 0.000832849 0.0649034 0.0601992 36 3202 36 6.89349e+06 338252 648988. 2245.63 3.80 0.295677 0.257113 26050 158493 -1 2847 20 1924 2947 238685 50612 4.68858 4.68858 -165.045 -4.68858 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.029094 0.0253055 166 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.93 vpr 62.16 MiB -1 -1 0.21 17748 1 0.02 -1 -1 30080 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.4 MiB 0.89 761 9024 2389 5969 666 62.2 MiB 0.08 0.00 3.2803 -102.743 -3.2803 3.2803 0.68 0.00052452 0.000488502 0.0289354 0.0268863 34 1907 21 6.89349e+06 239595 618332. 2139.56 1.29 0.130715 0.113182 25762 151098 -1 1608 21 825 1331 100637 22807 2.57631 2.57631 -99.2132 -2.57631 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0212871 0.0184344 92 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.39 vpr 63.25 MiB -1 -1 0.25 18160 1 0.03 -1 -1 30436 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 24.2 MiB 2.15 1326 14167 4936 7169 2062 63.2 MiB 0.15 0.00 5.79178 -174.585 -5.79178 5.79178 0.68 0.000770477 0.000715325 0.0550857 0.0510449 36 3412 40 6.89349e+06 380534 648988. 2245.63 4.18 0.304204 0.262974 26050 158493 -1 2668 21 1984 2651 224780 54704 5.17574 5.17574 -170.058 -5.17574 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0307083 0.026676 175 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.15 vpr 63.05 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30116 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 24.1 MiB 2.22 1345 11415 2751 7803 861 63.0 MiB 0.13 0.00 4.85389 -165.92 -4.85389 4.85389 0.69 0.00071239 0.000660895 0.0446841 0.0414797 34 3780 38 6.89349e+06 324158 618332. 2139.56 1.94 0.176264 0.15349 25762 151098 -1 2839 26 2609 3334 278222 60452 4.42139 4.42139 -167.968 -4.42139 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.029096 0.0252435 160 96 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.93 vpr 63.24 MiB -1 -1 0.22 18208 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 24.3 MiB 1.75 1062 14450 5050 7036 2364 63.2 MiB 0.14 0.00 4.10168 -125.093 -4.10168 4.10168 0.68 0.000712834 0.00066242 0.0566274 0.0525791 34 3126 46 6.89349e+06 310065 618332. 2139.56 2.20 0.222841 0.194036 25762 151098 -1 2289 17 1616 2256 167937 39501 3.36511 3.36511 -119.664 -3.36511 0 0 787024. 2723.27 0.27 0.07 0.13 -1 -1 0.27 0.0244671 0.0214104 153 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.39 vpr 63.09 MiB -1 -1 0.14 18136 1 0.03 -1 -1 30308 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 24.1 MiB 2.79 1315 16170 4894 8590 2686 63.1 MiB 0.17 0.00 5.8116 -176.256 -5.8116 5.8116 0.68 0.000774473 0.000719958 0.0648762 0.0603058 36 3148 23 6.89349e+06 366440 648988. 2245.63 3.61 0.284896 0.247853 26050 158493 -1 2680 22 1899 3048 266739 54735 4.49735 4.49735 -158.676 -4.49735 0 0 828058. 2865.25 0.26 0.10 0.14 -1 -1 0.26 0.0321548 0.0279577 172 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.13 vpr 62.09 MiB -1 -1 0.21 17924 1 0.02 -1 -1 30112 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 23.4 MiB 0.97 714 5293 1259 3713 321 62.1 MiB 0.05 0.00 3.04786 -95.0532 -3.04786 3.04786 0.67 0.000495728 0.000461193 0.0176004 0.016379 34 1618 20 6.89349e+06 211408 618332. 2139.56 2.46 0.15145 0.129575 25762 151098 -1 1440 18 680 907 66003 15107 2.32142 2.32142 -94.0544 -2.32142 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0175721 0.0152768 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.76 vpr 62.35 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30420 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 23.6 MiB 1.54 918 13610 4688 7323 1599 62.4 MiB 0.12 0.00 4.49503 -139.908 -4.49503 4.49503 0.68 0.000595123 0.000552782 0.0474131 0.043945 34 2210 22 6.89349e+06 281877 618332. 2139.56 1.37 0.163806 0.14245 25762 151098 -1 1798 23 1240 1867 138538 31230 3.6393 3.6393 -124.669 -3.6393 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0258738 0.0223296 119 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.46 vpr 62.48 MiB -1 -1 0.22 17948 1 0.03 -1 -1 30024 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 23.8 MiB 2.09 1110 8804 2328 5458 1018 62.5 MiB 0.09 0.00 4.17499 -140.03 -4.17499 4.17499 0.68 0.000620942 0.000576844 0.0326284 0.030306 38 2415 31 6.89349e+06 253689 678818. 2348.85 3.46 0.213381 0.183513 26626 170182 -1 2258 20 1273 2270 159500 34665 3.3385 3.3385 -133.564 -3.3385 0 0 902133. 3121.57 0.27 0.07 0.15 -1 -1 0.27 0.023924 0.0207296 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 7.28 vpr 62.19 MiB -1 -1 0.19 18088 1 0.03 -1 -1 30208 -1 -1 21 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 23.6 MiB 1.19 575 11200 4680 5492 1028 62.2 MiB 0.08 0.00 3.6605 -87.6445 -3.6605 3.6605 0.68 0.000481311 0.000447832 0.0340727 0.0317166 36 1473 28 6.89349e+06 295971 648988. 2245.63 3.32 0.177516 0.152714 26050 158493 -1 1215 19 713 1069 96004 27609 2.77716 2.77716 -80.0425 -2.77716 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0178479 0.0154546 92 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.34 vpr 63.17 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30256 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 24.2 MiB 2.96 1353 10455 2851 6962 642 63.2 MiB 0.12 0.00 4.36555 -133.994 -4.36555 4.36555 0.68 0.00072886 0.000677376 0.0419133 0.0389053 36 3449 28 6.89349e+06 324158 648988. 2245.63 2.43 0.195608 0.169542 26050 158493 -1 2903 21 1960 2918 219685 47503 3.70946 3.70946 -133.463 -3.70946 0 0 828058. 2865.25 0.23 0.09 0.16 -1 -1 0.23 0.0290001 0.0251742 160 72 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.78 vpr 63.15 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30220 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.1 MiB 2.55 1246 10442 2641 6824 977 63.2 MiB 0.12 0.00 4.77028 -152.681 -4.77028 4.77028 0.68 0.000762137 0.000707491 0.0409291 0.0379395 34 3563 24 6.89349e+06 408721 618332. 2139.56 2.26 0.194275 0.168593 25762 151098 -1 2750 22 2202 3046 245515 54377 4.20389 4.20389 -150.8 -4.20389 0 0 787024. 2723.27 0.21 0.10 0.15 -1 -1 0.21 0.031945 0.0277223 179 90 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 10.14 vpr 63.60 MiB -1 -1 0.37 18660 14 0.25 -1 -1 32984 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65128 32 32 277 309 1 207 91 17 17 289 -1 unnamed_device 24.7 MiB 0.44 1302 6007 1134 4530 343 63.6 MiB 0.10 0.00 8.06507 -165.8 -8.06507 8.06507 0.94 0.0015147 0.00140856 0.0488143 0.0453925 30 3549 44 6.55708e+06 325485 526063. 1820.29 5.81 0.645374 0.581557 21886 126133 -1 2767 18 1236 3844 178244 44468 6.8411 6.8411 -156.117 -6.8411 0 0 666494. 2306.21 0.21 0.11 0.18 -1 -1 0.21 0.0568629 0.0517785 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 12.03 vpr 63.48 MiB -1 -1 0.39 18472 14 0.28 -1 -1 33004 -1 -1 30 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65000 30 32 272 304 1 211 92 17 17 289 -1 unnamed_device 24.6 MiB 0.40 1258 10442 2540 7122 780 63.5 MiB 0.15 0.00 8.22247 -160.403 -8.22247 8.22247 0.95 0.00151595 0.00141078 0.0811717 0.0754143 28 4090 43 6.55708e+06 361650 500653. 1732.36 7.67 0.70319 0.634685 21310 115450 -1 3152 30 1977 6031 403034 123461 7.08916 7.08916 -157.669 -7.08916 0 0 612192. 2118.31 0.22 0.11 0.16 -1 -1 0.22 0.036446 0.0327501 184 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.83 vpr 63.57 MiB -1 -1 0.33 18348 11 0.22 -1 -1 32764 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65100 32 32 280 312 1 203 91 17 17 289 -1 unnamed_device 24.7 MiB 0.26 1264 8863 2060 5892 911 63.6 MiB 0.13 0.00 7.11975 -140.004 -7.11975 7.11975 0.94 0.00153493 0.0014265 0.0720865 0.0669932 38 2954 16 6.55708e+06 325485 638502. 2209.35 3.70 0.385185 0.347675 23326 155178 -1 2584 15 1058 3613 164043 39859 6.31024 6.31024 -133.731 -6.31024 0 0 851065. 2944.86 0.24 0.05 0.21 -1 -1 0.24 0.0227069 0.0207307 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.36 vpr 63.41 MiB -1 -1 0.34 18332 12 0.31 -1 -1 32960 -1 -1 31 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64936 29 32 275 307 1 205 92 17 17 289 -1 unnamed_device 24.4 MiB 0.42 1219 12719 3492 7061 2166 63.4 MiB 0.18 0.00 7.73186 -145.655 -7.73186 7.73186 0.95 0.00154442 0.00143385 0.10057 0.0934846 34 3603 43 6.55708e+06 373705 585099. 2024.56 2.81 0.484139 0.438907 22462 138074 -1 2850 21 1465 4490 230371 57226 6.6399 6.6399 -136.589 -6.6399 0 0 742403. 2568.87 0.23 0.13 0.22 -1 -1 0.23 0.0657192 0.0597799 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 8.89 vpr 63.65 MiB -1 -1 0.37 18396 13 0.27 -1 -1 32880 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65176 32 32 302 334 1 238 96 17 17 289 -1 unnamed_device 24.7 MiB 0.42 1537 9294 2316 6044 934 63.6 MiB 0.14 0.00 7.74403 -165.695 -7.74403 7.74403 0.95 0.00169917 0.00158134 0.0770091 0.0715896 30 3921 26 6.55708e+06 385760 526063. 1820.29 4.42 0.593319 0.537077 21886 126133 -1 3277 17 1571 4513 208200 51646 6.9195 6.9195 -161.549 -6.9195 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0603286 0.0551223 211 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.12 vpr 63.68 MiB -1 -1 0.38 18440 13 0.25 -1 -1 32932 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65204 32 32 292 324 1 216 94 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1429 10318 2408 6874 1036 63.7 MiB 0.15 0.00 7.55004 -148.529 -7.55004 7.55004 0.94 0.00161463 0.00150206 0.0827757 0.0769455 30 3805 31 6.55708e+06 361650 526063. 1820.29 1.73 0.315148 0.286706 21886 126133 -1 3035 20 1426 4714 215490 53041 6.6419 6.6419 -144.465 -6.6419 0 0 666494. 2306.21 0.21 0.13 0.18 -1 -1 0.21 0.065889 0.0599842 199 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.31 vpr 63.10 MiB -1 -1 0.32 18104 12 0.19 -1 -1 32852 -1 -1 28 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64616 27 32 229 261 1 178 87 17 17 289 -1 unnamed_device 24.3 MiB 0.18 1042 7383 1841 5010 532 63.1 MiB 0.10 0.00 7.10318 -127.218 -7.10318 7.10318 0.94 0.00123913 0.00115234 0.051268 0.0476546 28 2740 22 6.55708e+06 337540 500653. 1732.36 1.36 0.212124 0.192503 21310 115450 -1 2324 22 1222 3218 181284 51898 6.67144 6.67144 -129.167 -6.67144 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.054747 0.0496867 152 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.86 vpr 63.17 MiB -1 -1 0.33 18180 12 0.19 -1 -1 32952 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64688 31 32 229 261 1 185 86 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1218 7457 1700 4721 1036 63.2 MiB 0.10 0.00 6.26429 -136.408 -6.26429 6.26429 0.94 0.00123294 0.00114319 0.0520963 0.0483125 36 3033 21 6.55708e+06 277265 612192. 2118.31 2.69 0.309842 0.280062 22750 144809 -1 2575 17 991 2994 164484 39132 5.51626 5.51626 -132.152 -5.51626 0 0 782063. 2706.10 0.24 0.09 0.21 -1 -1 0.24 0.0439083 0.0400046 141 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 8.06 vpr 63.56 MiB -1 -1 0.36 18352 12 0.16 -1 -1 32792 -1 -1 26 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65088 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 24.6 MiB 0.25 1147 11573 2830 6597 2146 63.6 MiB 0.14 0.00 6.46263 -134.738 -6.46263 6.46263 0.95 0.00125969 0.00116992 0.0769689 0.071452 32 3387 30 6.55708e+06 313430 554710. 1919.41 3.94 0.530448 0.479125 22174 131602 -1 2770 17 1128 2848 184509 43765 5.90338 5.90338 -134.493 -5.90338 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0452646 0.0412443 150 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.34 vpr 63.33 MiB -1 -1 0.34 17976 13 0.19 -1 -1 32916 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64852 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1201 7613 1790 5065 758 63.3 MiB 0.11 0.00 7.6044 -163.149 -7.6044 7.6044 0.94 0.00135698 0.001262 0.0562884 0.0522902 28 3213 17 6.55708e+06 301375 500653. 1732.36 1.31 0.219705 0.199441 21310 115450 -1 2838 15 1135 3102 173856 42576 6.54924 6.54924 -158.173 -6.54924 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0438292 0.0399373 157 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 10.67 vpr 62.76 MiB -1 -1 0.34 18244 12 0.18 -1 -1 32524 -1 -1 24 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64264 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 24.1 MiB 0.31 975 6890 1484 5091 315 62.8 MiB 0.09 0.00 7.2876 -142.231 -7.2876 7.2876 0.95 0.00117437 0.0010908 0.0461192 0.0428364 26 3093 40 6.55708e+06 289320 477104. 1650.88 6.31 0.38885 0.350247 21022 109990 -1 2550 56 1589 4574 593210 274887 6.35264 6.35264 -140.327 -6.35264 0 0 585099. 2024.56 0.19 0.37 0.15 -1 -1 0.19 0.118942 0.107308 132 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.72 vpr 62.76 MiB -1 -1 0.32 18080 12 0.15 -1 -1 32660 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64264 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1124 10859 2500 7050 1309 62.8 MiB 0.13 0.00 6.80891 -152.833 -6.80891 6.80891 0.94 0.00121987 0.00113205 0.0737393 0.0684398 28 3156 23 6.55708e+06 265210 500653. 1732.36 1.71 0.233791 0.212325 21310 115450 -1 2700 27 1124 3121 245367 91386 6.36992 6.36992 -150.84 -6.36992 0 0 612192. 2118.31 0.20 0.16 0.16 -1 -1 0.20 0.0639281 0.0579352 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 13.47 vpr 63.64 MiB -1 -1 0.38 18476 13 0.28 -1 -1 33112 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65168 32 32 283 315 1 222 93 17 17 289 -1 unnamed_device 24.7 MiB 0.28 1356 6603 1407 4412 784 63.6 MiB 0.10 0.00 8.08695 -168.334 -8.08695 8.08695 0.94 0.00156808 0.00145805 0.0536865 0.0499276 30 3437 43 6.55708e+06 349595 526063. 1820.29 9.21 0.669412 0.604528 21886 126133 -1 2777 17 1137 3464 160770 39634 7.32896 7.32896 -162.71 -7.32896 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0560447 0.0511377 191 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 7.58 vpr 63.54 MiB -1 -1 0.37 18600 14 0.30 -1 -1 32848 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65064 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 24.5 MiB 0.42 1549 7123 1334 5022 767 63.5 MiB 0.11 0.00 8.74533 -181.262 -8.74533 8.74533 1.00 0.00165986 0.00154062 0.0611623 0.0568808 36 3785 27 6.55708e+06 361650 612192. 2118.31 3.03 0.444062 0.402192 22750 144809 -1 3131 18 1362 3797 187715 46318 7.48896 7.48896 -167.549 -7.48896 0 0 782063. 2706.10 0.24 0.12 0.21 -1 -1 0.24 0.0630454 0.0574393 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 6.41 vpr 62.98 MiB -1 -1 0.30 17996 11 0.17 -1 -1 32656 -1 -1 27 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64492 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 24.3 MiB 0.22 935 9838 2446 5532 1860 63.0 MiB 0.12 0.00 6.43815 -124.278 -6.43815 6.43815 0.94 0.00122284 0.00113678 0.0647752 0.0601775 36 2514 23 6.55708e+06 325485 612192. 2118.31 2.36 0.324005 0.293318 22750 144809 -1 2114 16 1008 2855 138159 37000 5.57232 5.57232 -118.55 -5.57232 0 0 782063. 2706.10 0.24 0.08 0.21 -1 -1 0.24 0.041859 0.0381518 147 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.66 vpr 63.67 MiB -1 -1 0.37 18476 12 0.27 -1 -1 32956 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65200 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 24.7 MiB 0.37 1403 9865 2364 6534 967 63.7 MiB 0.15 0.00 7.61832 -157.97 -7.61832 7.61832 0.95 0.00167383 0.00155705 0.079777 0.0741463 38 3481 19 6.55708e+06 397815 638502. 2209.35 5.20 0.677541 0.613362 23326 155178 -1 3014 15 1275 4245 192251 46422 6.91184 6.91184 -151.961 -6.91184 0 0 851065. 2944.86 0.26 0.11 0.22 -1 -1 0.26 0.0548708 0.0501813 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 8.75 vpr 63.55 MiB -1 -1 0.38 18444 14 0.24 -1 -1 33008 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65076 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 24.6 MiB 0.29 1439 7653 1673 5509 471 63.6 MiB 0.12 0.00 7.67629 -159.38 -7.67629 7.67629 0.93 0.00152357 0.00141325 0.0614271 0.0570407 36 3667 18 6.55708e+06 349595 612192. 2118.31 4.49 0.505766 0.456324 22750 144809 -1 3015 16 1176 3559 184517 44669 6.82884 6.82884 -151.524 -6.82884 0 0 782063. 2706.10 0.24 0.11 0.21 -1 -1 0.24 0.052859 0.0482664 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.96 vpr 63.11 MiB -1 -1 0.34 18372 12 0.16 -1 -1 32684 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64624 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1135 6807 1403 4768 636 63.1 MiB 0.12 0.00 7.47584 -167.104 -7.47584 7.47584 0.96 0.00121368 0.00111912 0.0607951 0.0567128 28 2878 47 6.55708e+06 277265 500653. 1732.36 1.85 0.273139 0.247855 21310 115450 -1 2448 14 919 2676 148720 35337 6.2395 6.2395 -154.42 -6.2395 0 0 612192. 2118.31 0.20 0.08 0.16 -1 -1 0.20 0.0387638 0.0354412 141 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.88 vpr 62.38 MiB -1 -1 0.29 17840 10 0.10 -1 -1 32480 -1 -1 16 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 63876 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 23.7 MiB 0.16 826 8378 2614 4173 1591 62.4 MiB 0.09 0.00 5.4738 -124.829 -5.4738 5.4738 0.94 0.000891662 0.000827935 0.0474068 0.0439866 26 2157 22 6.55708e+06 192880 477104. 1650.88 1.20 0.160224 0.144624 21022 109990 -1 1860 17 719 1710 109568 30083 4.68146 4.68146 -121.446 -4.68146 0 0 585099. 2024.56 0.19 0.07 0.15 -1 -1 0.19 0.0313758 0.0283224 91 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.29 vpr 63.23 MiB -1 -1 0.34 18072 13 0.18 -1 -1 32828 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64752 31 32 231 263 1 186 87 17 17 289 -1 unnamed_device 24.2 MiB 0.37 1089 7959 1662 5544 753 63.2 MiB 0.11 0.00 7.1116 -151.06 -7.1116 7.1116 0.95 0.00125267 0.0011639 0.0558871 0.0519432 28 2875 20 6.55708e+06 289320 500653. 1732.36 1.11 0.213826 0.19429 21310 115450 -1 2596 17 1149 2942 165063 40262 6.64552 6.64552 -151.565 -6.64552 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0456193 0.0415667 149 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 6.90 vpr 63.70 MiB -1 -1 0.36 18576 13 0.30 -1 -1 32956 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65232 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 24.7 MiB 0.39 1422 6791 1371 4904 516 63.7 MiB 0.11 0.00 8.24149 -161.982 -8.24149 8.24149 0.94 0.00164305 0.00152394 0.056416 0.0523913 28 3848 47 6.55708e+06 373705 500653. 1732.36 2.45 0.333307 0.302107 21310 115450 -1 3374 30 2145 7154 430758 109768 7.1619 7.1619 -157.554 -7.1619 0 0 612192. 2118.31 0.20 0.21 0.16 -1 -1 0.20 0.0933683 0.0847107 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 9.45 vpr 63.55 MiB -1 -1 0.39 18728 13 0.28 -1 -1 32620 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65072 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 24.6 MiB 0.39 1571 7639 1725 5480 434 63.5 MiB 0.13 0.00 7.9256 -167.417 -7.9256 7.9256 0.95 0.00157051 0.00146426 0.0676801 0.0628284 46 3529 21 6.55708e+06 325485 782063. 2706.10 4.87 0.558511 0.505264 24766 183262 -1 3112 18 1243 4221 202039 46911 6.98824 6.98824 -154.204 -6.98824 0 0 958460. 3316.47 0.29 0.12 0.27 -1 -1 0.29 0.0599502 0.0546623 194 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.74 vpr 62.58 MiB -1 -1 0.28 17832 9 0.09 -1 -1 32368 -1 -1 24 26 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64084 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 24.0 MiB 0.20 719 6668 1593 4477 598 62.6 MiB 0.06 0.00 4.68552 -94.026 -4.68552 4.68552 0.95 0.000807682 0.000750614 0.0322623 0.0299581 26 1758 17 6.55708e+06 289320 477104. 1650.88 1.09 0.127456 0.114738 21022 109990 -1 1573 14 595 1465 87586 21441 4.38194 4.38194 -95.2977 -4.38194 0 0 585099. 2024.56 0.19 0.05 0.16 -1 -1 0.19 0.0244508 0.0220765 87 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.70 vpr 63.54 MiB -1 -1 0.32 18324 13 0.27 -1 -1 32916 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65060 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 24.6 MiB 0.23 1351 10979 3098 6336 1545 63.5 MiB 0.17 0.00 8.17761 -160.563 -8.17761 8.17761 0.95 0.00157391 0.00146328 0.0925377 0.0859217 30 3968 46 6.55708e+06 301375 526063. 1820.29 2.49 0.356723 0.323993 21886 126133 -1 2944 17 1331 4056 192089 47193 7.2847 7.2847 -156.071 -7.2847 0 0 666494. 2306.21 0.21 0.11 0.18 -1 -1 0.21 0.0561397 0.0511955 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.59 vpr 62.34 MiB -1 -1 0.24 17732 8 0.11 -1 -1 32308 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 63840 32 32 154 186 1 120 79 17 17 289 -1 unnamed_device 23.5 MiB 0.15 651 6501 1478 4780 243 62.3 MiB 0.07 0.00 4.41277 -92.7441 -4.41277 4.41277 0.94 0.000772078 0.000715555 0.0317192 0.029396 28 1846 22 6.55708e+06 180825 500653. 1732.36 1.06 0.121102 0.108659 21310 115450 -1 1593 15 656 1475 84538 22730 3.82214 3.82214 -97.4435 -3.82214 0 0 612192. 2118.31 0.20 0.06 0.16 -1 -1 0.20 0.0248595 0.0224063 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 10.15 vpr 63.43 MiB -1 -1 0.32 18372 15 0.23 -1 -1 32856 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64948 32 32 254 286 1 197 90 17 17 289 -1 unnamed_device 24.4 MiB 0.40 1196 7728 1698 5709 321 63.4 MiB 0.11 0.00 8.17826 -163.063 -8.17826 8.17826 0.95 0.00141161 0.00131277 0.0585618 0.0544562 30 3142 23 6.55708e+06 313430 526063. 1820.29 5.89 0.439265 0.396516 21886 126133 -1 2584 19 1328 3987 195523 47482 7.26844 7.26844 -156.353 -7.26844 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0555327 0.0504858 165 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.25 vpr 63.41 MiB -1 -1 0.33 18356 13 0.22 -1 -1 32872 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64936 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1290 7929 1849 5090 990 63.4 MiB 0.11 0.00 7.1956 -157.385 -7.1956 7.1956 0.94 0.0014364 0.00133599 0.0604614 0.0561668 34 3275 27 6.55708e+06 313430 585099. 2024.56 1.99 0.307831 0.278789 22462 138074 -1 2813 19 1451 4178 221914 53976 6.57878 6.57878 -155.839 -6.57878 0 0 742403. 2568.87 0.23 0.12 0.20 -1 -1 0.23 0.056306 0.0511217 168 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 6.44 vpr 63.46 MiB -1 -1 0.34 18424 13 0.26 -1 -1 32932 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64988 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1302 9753 2433 6184 1136 63.5 MiB 0.14 0.00 7.90993 -159.862 -7.90993 7.90993 0.94 0.00153601 0.00142886 0.0759292 0.0705547 28 4105 49 6.55708e+06 349595 500653. 1732.36 2.25 0.344428 0.312529 21310 115450 -1 3177 24 1774 5775 350291 95372 6.9633 6.9633 -157.591 -6.9633 0 0 612192. 2118.31 0.20 0.17 0.16 -1 -1 0.20 0.0731389 0.0663848 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 9.00 vpr 63.13 MiB -1 -1 0.33 18060 12 0.16 -1 -1 32732 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64644 32 32 238 270 1 189 85 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1221 7525 1804 5243 478 63.1 MiB 0.10 0.00 6.81858 -149.06 -6.81858 6.81858 0.94 0.00125208 0.00116341 0.0543956 0.0504585 38 2813 49 6.55708e+06 253155 638502. 2209.35 4.85 0.539601 0.486589 23326 155178 -1 2413 15 964 2789 131917 32193 5.81778 5.81778 -138.199 -5.81778 0 0 851065. 2944.86 0.26 0.09 0.24 -1 -1 0.26 0.0416771 0.0380338 148 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 8.48 vpr 62.82 MiB -1 -1 0.31 18196 11 0.15 -1 -1 32824 -1 -1 23 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64332 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 24.2 MiB 0.16 989 9199 2086 6295 818 62.8 MiB 0.11 0.00 6.43069 -134.961 -6.43069 6.43069 0.94 0.00112604 0.0010455 0.0590468 0.0548092 26 2814 46 6.55708e+06 277265 477104. 1650.88 4.63 0.383587 0.345667 21022 109990 -1 2368 16 1015 2576 143669 35070 5.62118 5.62118 -131.044 -5.62118 0 0 585099. 2024.56 0.19 0.08 0.15 -1 -1 0.19 0.0385331 0.0350493 131 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.39 vpr 62.93 MiB -1 -1 0.32 18064 11 0.17 -1 -1 32760 -1 -1 28 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64436 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 24.1 MiB 0.50 932 12958 3701 6997 2260 62.9 MiB 0.15 0.00 6.5982 -125.759 -6.5982 6.5982 0.94 0.00122032 0.00113312 0.0846489 0.078588 32 2667 42 6.55708e+06 337540 554710. 1919.41 1.08 0.21353 0.193839 22174 131602 -1 2269 21 1121 2871 162455 42524 5.90338 5.90338 -127.707 -5.90338 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0520557 0.0472795 150 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 5.89 vpr 63.42 MiB -1 -1 0.31 18128 12 0.20 -1 -1 32792 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64944 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1332 7326 1532 5228 566 63.4 MiB 0.11 0.00 7.49746 -163.819 -7.49746 7.49746 0.95 0.001459 0.00135625 0.0575507 0.0534878 28 3504 37 6.55708e+06 313430 500653. 1732.36 1.84 0.281676 0.255382 21310 115450 -1 2857 16 1274 3273 168925 41433 6.38924 6.38924 -156.372 -6.38924 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0497518 0.0453284 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 8.13 vpr 63.29 MiB -1 -1 0.33 18016 12 0.18 -1 -1 32844 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64804 31 32 237 269 1 178 86 17 17 289 -1 unnamed_device 24.6 MiB 0.48 1141 5378 1025 3934 419 63.3 MiB 0.08 0.00 7.2858 -149.294 -7.2858 7.2858 0.96 0.0012475 0.00115842 0.0393889 0.03659 34 2698 19 6.55708e+06 277265 585099. 2024.56 3.80 0.433231 0.390154 22462 138074 -1 2329 16 971 2653 140370 34203 6.59044 6.59044 -141.523 -6.59044 0 0 742403. 2568.87 0.23 0.09 0.20 -1 -1 0.23 0.042715 0.0389121 148 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 9.08 vpr 62.88 MiB -1 -1 0.33 18068 10 0.14 -1 -1 32748 -1 -1 22 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64388 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1038 7643 2004 4942 697 62.9 MiB 0.10 0.00 5.84872 -123.373 -5.84872 5.84872 0.95 0.00122836 0.00114269 0.0558677 0.0519015 26 3275 49 6.55708e+06 265210 477104. 1650.88 5.10 0.417311 0.376685 21022 109990 -1 2525 28 1240 3626 350142 137187 5.44186 5.44186 -124.855 -5.44186 0 0 585099. 2024.56 0.19 0.20 0.19 -1 -1 0.19 0.065323 0.0591611 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.37 vpr 63.78 MiB -1 -1 0.41 19008 13 0.30 -1 -1 33080 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65312 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 24.7 MiB 0.27 1471 6791 1284 4967 540 63.8 MiB 0.11 0.00 7.9206 -163.84 -7.9206 7.9206 0.99 0.00174361 0.00162107 0.060099 0.0558696 30 3834 25 6.55708e+06 373705 526063. 1820.29 1.96 0.298276 0.271216 21886 126133 -1 3055 15 1341 4408 203750 50801 7.0789 7.0789 -157.913 -7.0789 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0574212 0.0525245 221 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 7.59 vpr 63.58 MiB -1 -1 0.40 18852 14 0.30 -1 -1 33420 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65104 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 24.7 MiB 0.52 1376 6509 1418 4515 576 63.6 MiB 0.11 0.00 7.46584 -163.527 -7.46584 7.46584 0.95 0.00157794 0.00146701 0.054509 0.0506973 34 3764 28 6.55708e+06 337540 585099. 2024.56 2.97 0.41374 0.374006 22462 138074 -1 3219 18 1465 4357 231576 55329 6.69438 6.69438 -158.103 -6.69438 0 0 742403. 2568.87 0.23 0.12 0.20 -1 -1 0.23 0.0600756 0.0548018 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 7.13 vpr 63.23 MiB -1 -1 0.33 18028 12 0.15 -1 -1 32496 -1 -1 29 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64752 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1191 6716 1464 4657 595 63.2 MiB 0.09 0.00 7.49501 -150.663 -7.49501 7.49501 0.94 0.00125162 0.00115881 0.0441753 0.04096 34 2989 48 6.55708e+06 349595 585099. 2024.56 3.15 0.304961 0.275517 22462 138074 -1 2496 13 906 2597 142976 34453 6.4819 6.4819 -141.792 -6.4819 0 0 742403. 2568.87 0.23 0.08 0.21 -1 -1 0.23 0.0367441 0.0335682 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 7.22 vpr 63.65 MiB -1 -1 0.40 18620 12 0.27 -1 -1 32824 -1 -1 34 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65180 31 32 307 339 1 232 97 17 17 289 -1 unnamed_device 24.6 MiB 0.50 1434 7201 1575 4780 846 63.7 MiB 0.11 0.00 7.50893 -153.023 -7.50893 7.50893 0.94 0.00168442 0.00156498 0.0595583 0.0553459 28 4488 33 6.55708e+06 409870 500653. 1732.36 2.60 0.311383 0.282845 21310 115450 -1 3647 26 1958 6174 424137 117632 6.75444 6.75444 -150.3 -6.75444 0 0 612192. 2118.31 0.20 0.20 0.16 -1 -1 0.20 0.085638 0.0778259 219 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.89 vpr 63.42 MiB -1 -1 0.41 19008 14 0.33 -1 -1 32848 -1 -1 29 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64940 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 24.4 MiB 0.20 1374 5474 1049 3945 480 63.4 MiB 0.09 0.00 8.16861 -161.211 -8.16861 8.16861 0.82 0.00163526 0.00152112 0.0480609 0.0446822 28 4097 38 6.55708e+06 349595 500653. 1732.36 2.06 0.300673 0.272413 21310 115450 -1 3321 26 1478 4395 286734 90178 7.1997 7.1997 -156.86 -7.1997 0 0 612192. 2118.31 0.20 0.18 0.18 -1 -1 0.20 0.0827263 0.0751921 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 7.25 vpr 63.49 MiB -1 -1 0.39 18912 13 0.25 -1 -1 32992 -1 -1 28 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65016 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1387 6619 1451 4703 465 63.5 MiB 0.10 0.00 8.01146 -159.733 -8.01146 8.01146 0.95 0.00152387 0.0014176 0.0540373 0.0502365 36 3550 21 6.55708e+06 337540 612192. 2118.31 2.89 0.383677 0.347141 22750 144809 -1 3088 22 1707 5180 275010 66623 7.06924 7.06924 -154.571 -7.06924 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.067991 0.0617749 185 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 14.38 vpr 63.43 MiB -1 -1 0.37 18632 13 0.25 -1 -1 32948 -1 -1 26 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64948 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1346 5039 929 3735 375 63.4 MiB 0.09 0.00 7.0422 -139.101 -7.0422 7.0422 0.94 0.00153129 0.00141132 0.04459 0.0414727 28 3764 32 6.55708e+06 313430 500653. 1732.36 9.76 0.46282 0.41813 21310 115450 -1 3298 59 1479 4808 572640 290949 6.19064 6.19064 -140.351 -6.19064 0 0 612192. 2118.31 0.20 0.42 0.16 -1 -1 0.20 0.157094 0.141913 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 10.05 vpr 63.23 MiB -1 -1 0.32 18100 12 0.18 -1 -1 32868 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64752 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1210 7108 1610 4933 565 63.2 MiB 0.10 0.00 6.87954 -141.685 -6.87954 6.87954 0.94 0.00139909 0.00130099 0.0550848 0.0511883 26 3635 42 6.55708e+06 289320 477104. 1650.88 6.04 0.458197 0.412942 21022 109990 -1 2927 15 1272 3583 221818 53081 6.06278 6.06278 -144.301 -6.06278 0 0 585099. 2024.56 0.19 0.10 0.15 -1 -1 0.19 0.0456079 0.0415541 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 9.58 vpr 63.89 MiB -1 -1 0.45 19348 14 0.38 -1 -1 32924 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65428 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 24.8 MiB 0.37 1621 7439 1507 5629 303 63.9 MiB 0.13 0.00 8.33767 -177.625 -8.33767 8.33767 0.94 0.00181648 0.00168665 0.0680228 0.0631743 44 3899 39 6.55708e+06 373705 742403. 2568.87 4.78 0.653644 0.59151 24478 177802 -1 3231 14 1452 4839 230226 54928 7.16956 7.16956 -161.242 -7.16956 0 0 937218. 3242.97 0.29 0.12 0.26 -1 -1 0.29 0.0571859 0.0523972 230 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 7.53 vpr 63.32 MiB -1 -1 0.30 18112 11 0.17 -1 -1 32356 -1 -1 26 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64844 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1199 8009 1837 5098 1074 63.3 MiB 0.11 0.00 6.67634 -139.796 -6.67634 6.67634 0.94 0.00134966 0.00125726 0.0589248 0.0547861 30 3273 21 6.55708e+06 313430 526063. 1820.29 3.56 0.413879 0.373457 21886 126133 -1 2683 16 1137 3205 164179 39136 6.02098 6.02098 -139.21 -6.02098 0 0 666494. 2306.21 0.21 0.09 0.18 -1 -1 0.21 0.0464506 0.0422999 163 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 13.41 vpr 63.75 MiB -1 -1 0.38 18624 13 0.26 -1 -1 33204 -1 -1 28 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65276 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 24.8 MiB 0.41 1233 10087 2475 7168 444 63.7 MiB 0.15 0.00 8.06207 -155.797 -8.06207 8.06207 0.95 0.00156216 0.00145239 0.0809375 0.0750922 28 4114 41 6.55708e+06 337540 500653. 1732.36 8.95 0.56888 0.513766 21310 115450 -1 3114 22 1562 5387 347670 98715 7.01476 7.01476 -150.396 -7.01476 0 0 612192. 2118.31 0.20 0.17 0.16 -1 -1 0.20 0.0702969 0.0640247 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.56 vpr 63.74 MiB -1 -1 0.35 18284 12 0.27 -1 -1 32880 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65268 32 32 303 335 1 222 95 17 17 289 -1 unnamed_device 24.8 MiB 0.43 1436 6359 1286 4580 493 63.7 MiB 0.10 0.00 6.95103 -151.174 -6.95103 6.95103 0.95 0.0016639 0.00154263 0.0536024 0.0497499 30 3734 48 6.55708e+06 373705 526063. 1820.29 2.18 0.346387 0.314095 21886 126133 -1 3201 16 1424 4920 233788 56531 5.82038 5.82038 -141.205 -5.82038 0 0 666494. 2306.21 0.21 0.12 0.18 -1 -1 0.21 0.0574176 0.0524252 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.58 vpr 63.46 MiB -1 -1 0.34 18368 13 0.24 -1 -1 32944 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64988 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 24.4 MiB 0.25 1308 6183 1201 4740 242 63.5 MiB 0.10 0.00 7.54518 -157.312 -7.54518 7.54518 0.96 0.00151726 0.00141092 0.0506664 0.0470769 30 3199 22 6.55708e+06 349595 526063. 1820.29 1.39 0.246463 0.223651 21886 126133 -1 2733 16 1134 3357 155007 38343 6.66944 6.66944 -150.856 -6.66944 0 0 666494. 2306.21 0.22 0.10 0.17 -1 -1 0.22 0.0522152 0.0476432 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 6.15 vpr 63.29 MiB -1 -1 0.39 18428 13 0.21 -1 -1 33372 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64812 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1388 8532 2067 5744 721 63.3 MiB 0.12 0.00 7.16941 -159.486 -7.16941 7.16941 0.94 0.00147324 0.00136973 0.0667109 0.0619727 30 3528 26 6.55708e+06 313430 526063. 1820.29 1.91 0.267348 0.24262 21886 126133 -1 2825 17 1169 3400 165301 40031 6.22018 6.22018 -150.061 -6.22018 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0528939 0.0481449 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 13.85 vpr 63.67 MiB -1 -1 0.39 18536 12 0.24 -1 -1 32896 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65196 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 24.7 MiB 0.44 1391 9892 2367 6162 1363 63.7 MiB 0.15 0.00 7.40971 -158.505 -7.40971 7.40971 0.95 0.00161609 0.00149419 0.0788441 0.0731407 34 4123 42 6.55708e+06 361650 585099. 2024.56 9.26 0.679087 0.613342 22462 138074 -1 3315 27 1664 5812 388338 115009 6.59044 6.59044 -152.083 -6.59044 0 0 742403. 2568.87 0.23 0.20 0.20 -1 -1 0.23 0.0846261 0.0767957 197 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 7.92 vpr 63.66 MiB -1 -1 0.40 18916 13 0.28 -1 -1 33348 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65188 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 24.7 MiB 0.39 1496 6791 1324 4848 619 63.7 MiB 0.12 0.00 7.58188 -163.597 -7.58188 7.58188 0.95 0.00170761 0.00158832 0.0600905 0.0558437 34 4308 41 6.55708e+06 373705 585099. 2024.56 3.41 0.398655 0.36144 22462 138074 -1 3385 19 1584 4834 253942 60632 6.75244 6.75244 -157.383 -6.75244 0 0 742403. 2568.87 0.23 0.14 0.20 -1 -1 0.23 0.068087 0.0621711 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 8.81 vpr 63.45 MiB -1 -1 0.33 18412 14 0.27 -1 -1 32796 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64972 32 32 262 294 1 193 89 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1153 11969 3180 6354 2435 63.4 MiB 0.17 0.00 8.31223 -163.645 -8.31223 8.31223 0.95 0.00145274 0.00135073 0.0923923 0.0858777 36 3166 25 6.55708e+06 301375 612192. 2118.31 4.41 0.500915 0.453386 22750 144809 -1 2641 16 1163 3654 177250 44238 7.3565 7.3565 -153.601 -7.3565 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.0497062 0.0453409 168 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 14.85 vpr 63.64 MiB -1 -1 0.35 18368 13 0.27 -1 -1 32980 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65172 32 32 291 323 1 224 95 17 17 289 -1 unnamed_device 24.6 MiB 0.44 1425 8519 1811 6143 565 63.6 MiB 0.13 0.00 8.29301 -163.281 -8.29301 8.29301 0.94 0.00158351 0.00147054 0.0674793 0.0627026 28 4388 38 6.55708e+06 373705 500653. 1732.36 10.40 0.559018 0.505535 21310 115450 -1 3548 21 1606 4787 309624 80370 7.32896 7.32896 -159.206 -7.32896 0 0 612192. 2118.31 0.20 0.15 0.16 -1 -1 0.20 0.0672357 0.0611178 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 6.66 vpr 63.65 MiB -1 -1 0.41 18600 13 0.31 -1 -1 32908 -1 -1 31 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65180 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 24.7 MiB 0.23 1386 9679 2058 7206 415 63.7 MiB 0.15 0.00 7.87649 -159.745 -7.87649 7.87649 0.94 0.00166159 0.00154552 0.0799922 0.074349 36 3610 20 6.55708e+06 373705 612192. 2118.31 2.24 0.385575 0.350286 22750 144809 -1 3002 17 1469 4281 216389 54544 6.6811 6.6811 -150.132 -6.6811 0 0 782063. 2706.10 0.24 0.12 0.21 -1 -1 0.24 0.059441 0.0542479 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 11.59 vpr 63.63 MiB -1 -1 0.39 18696 12 0.29 -1 -1 32780 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65156 32 32 308 340 1 237 97 17 17 289 -1 unnamed_device 24.6 MiB 0.29 1456 8755 1875 6172 708 63.6 MiB 0.13 0.00 7.82047 -162.193 -7.82047 7.82047 0.96 0.00163683 0.00152007 0.0699765 0.0649477 28 4328 44 6.55708e+06 397815 500653. 1732.36 7.10 0.551981 0.49946 21310 115450 -1 3485 27 1602 4433 306055 99668 7.0025 7.0025 -163.394 -7.0025 0 0 612192. 2118.31 0.20 0.19 0.18 -1 -1 0.20 0.0869537 0.0790282 216 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 9.53 vpr 62.72 MiB -1 -1 0.30 18048 11 0.13 -1 -1 32728 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64228 32 32 216 248 1 160 83 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1004 9263 2865 4455 1943 62.7 MiB 0.11 0.00 6.22709 -128.104 -6.22709 6.22709 0.95 0.00112742 0.00104642 0.0613541 0.0567756 28 3076 27 6.55708e+06 229045 500653. 1732.36 5.66 0.345193 0.310788 21310 115450 -1 2435 18 1101 2952 175148 42828 5.4302 5.4302 -134.204 -5.4302 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0422583 0.0382864 126 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 7.21 vpr 63.26 MiB -1 -1 0.36 18356 13 0.22 -1 -1 32908 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64780 32 32 254 286 1 195 88 17 17 289 -1 unnamed_device 24.2 MiB 0.37 1233 5938 1147 4519 272 63.3 MiB 0.09 0.00 7.61227 -159.82 -7.61227 7.61227 0.95 0.0014192 0.00131918 0.0470328 0.0437743 26 3681 50 6.55708e+06 289320 477104. 1650.88 2.99 0.294498 0.266593 21022 109990 -1 3085 18 1324 3682 242644 60416 6.82824 6.82824 -157.345 -6.82824 0 0 585099. 2024.56 0.19 0.12 0.18 -1 -1 0.19 0.0527433 0.0479762 161 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 9.48 vpr 63.86 MiB -1 -1 0.41 19120 14 0.42 -1 -1 33024 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65396 32 32 338 370 1 251 98 17 17 289 -1 unnamed_device 24.9 MiB 0.46 1522 6848 1188 5384 276 63.9 MiB 0.12 0.00 8.62537 -170.671 -8.62537 8.62537 0.95 0.00190983 0.00176761 0.0636747 0.0592453 44 3606 19 6.55708e+06 409870 742403. 2568.87 4.59 0.635184 0.575999 24478 177802 -1 2993 17 1411 4512 201794 49789 7.36876 7.36876 -156.166 -7.36876 0 0 937218. 3242.97 0.29 0.13 0.27 -1 -1 0.29 0.068736 0.0629085 244 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 12.91 vpr 63.42 MiB -1 -1 0.36 18656 13 0.28 -1 -1 32872 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64944 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.5 MiB 0.40 1384 6823 1472 4881 470 63.4 MiB 0.11 0.00 7.83243 -170.302 -7.83243 7.83243 0.94 0.00151981 0.00141392 0.0551995 0.0513124 30 3433 21 6.55708e+06 325485 526063. 1820.29 8.52 0.6881 0.620685 21886 126133 -1 2885 17 1149 3546 169392 40800 6.7601 6.7601 -156.322 -6.7601 0 0 666494. 2306.21 0.21 0.10 0.18 -1 -1 0.21 0.0546909 0.0498292 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.42 vpr 62.80 MiB -1 -1 0.31 18084 11 0.18 -1 -1 32868 -1 -1 23 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64312 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 24.0 MiB 0.17 1068 5665 1228 3746 691 62.8 MiB 0.08 0.00 6.82549 -140.791 -6.82549 6.82549 0.94 0.00122002 0.00113318 0.0408782 0.0380182 28 2721 41 6.55708e+06 277265 500653. 1732.36 1.51 0.235654 0.213301 21310 115450 -1 2264 17 905 2552 130313 32449 6.02098 6.02098 -138.288 -6.02098 0 0 612192. 2118.31 0.20 0.08 0.16 -1 -1 0.20 0.0435708 0.0396318 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 7.68 vpr 63.98 MiB -1 -1 0.44 19452 15 0.49 -1 -1 32936 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65520 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 25.0 MiB 0.29 1739 8198 1861 5696 641 64.0 MiB 0.14 0.00 9.48099 -183.773 -9.48099 9.48099 0.94 0.00197881 0.0018403 0.0780181 0.0725263 30 4864 37 6.55708e+06 409870 526063. 1820.29 2.94 0.386799 0.352055 21886 126133 -1 3890 18 2180 7102 352496 85382 8.25701 8.25701 -175.504 -8.25701 0 0 666494. 2306.21 0.24 0.17 0.18 -1 -1 0.24 0.0763188 0.0698372 257 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.38 vpr 63.70 MiB -1 -1 0.37 18536 13 0.30 -1 -1 32924 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65224 32 32 297 329 1 216 91 17 17 289 -1 unnamed_device 24.8 MiB 0.24 1402 8047 1818 5614 615 63.7 MiB 0.12 0.00 8.34252 -168.918 -8.34252 8.34252 0.93 0.00164098 0.00152629 0.0695136 0.0646148 28 3870 45 6.55708e+06 325485 500653. 1732.36 2.04 0.344832 0.313079 21310 115450 -1 3228 32 1354 4054 298440 105342 7.13236 7.13236 -163.908 -7.13236 0 0 612192. 2118.31 0.20 0.20 0.16 -1 -1 0.20 0.0997573 0.0905629 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 8.13 vpr 63.05 MiB -1 -1 0.28 17812 11 0.13 -1 -1 32964 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64560 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 24.4 MiB 0.31 1123 7079 1610 4999 470 63.0 MiB 0.10 0.00 6.21723 -134.883 -6.21723 6.21723 0.96 0.00120405 0.00111588 0.0487178 0.0451269 34 2823 36 6.55708e+06 265210 585099. 2024.56 4.08 0.443649 0.399826 22462 138074 -1 2450 17 1024 2926 154971 37498 5.40772 5.40772 -131.836 -5.40772 0 0 742403. 2568.87 0.24 0.09 0.20 -1 -1 0.24 0.0432864 0.0393907 141 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 15.74 vpr 63.79 MiB -1 -1 0.37 18664 12 0.29 -1 -1 32812 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65320 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 24.8 MiB 0.43 1442 7336 1475 5411 450 63.8 MiB 0.12 0.00 7.74548 -154.851 -7.74548 7.74548 0.98 0.00166559 0.00153565 0.0641104 0.0594648 28 4181 49 6.55708e+06 361650 500653. 1732.36 11.16 0.583074 0.526839 21310 115450 -1 3420 19 1647 5294 321055 75782 6.8013 6.8013 -154.488 -6.8013 0 0 612192. 2118.31 0.20 0.15 0.16 -1 -1 0.20 0.0663718 0.0604727 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.60 vpr 63.36 MiB -1 -1 0.29 17988 12 0.19 -1 -1 32708 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64884 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 24.3 MiB 0.44 1234 7728 1773 5535 420 63.4 MiB 0.11 0.00 7.26258 -154.513 -7.26258 7.26258 0.94 0.00133345 0.00122926 0.0559789 0.0519478 30 3141 23 6.55708e+06 313430 526063. 1820.29 1.39 0.228241 0.207162 21886 126133 -1 2643 18 1112 3131 154785 37698 6.50944 6.50944 -149.86 -6.50944 0 0 666494. 2306.21 0.21 0.10 0.18 -1 -1 0.21 0.05005 0.0456222 153 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.05 vpr 62.93 MiB -1 -1 0.35 17956 12 0.18 -1 -1 32684 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64436 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 24.1 MiB 0.19 964 11603 3147 6112 2344 62.9 MiB 0.15 0.00 6.97512 -139.748 -6.97512 6.97512 0.95 0.00125253 0.00116357 0.0847104 0.0786624 30 2435 21 6.55708e+06 253155 526063. 1820.29 1.11 0.243935 0.222052 21886 126133 -1 1988 17 810 2351 103896 26624 6.11164 6.11164 -132.925 -6.11164 0 0 666494. 2306.21 0.22 0.08 0.09 -1 -1 0.22 0.0451523 0.0411495 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.12 vpr 63.61 MiB -1 -1 0.39 18640 12 0.26 -1 -1 33248 -1 -1 31 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65140 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 24.7 MiB 0.29 1335 8579 2026 5633 920 63.6 MiB 0.13 0.00 6.72746 -129.302 -6.72746 6.72746 0.95 0.00155844 0.00144864 0.0695422 0.0646464 30 3434 31 6.55708e+06 373705 526063. 1820.29 1.77 0.299663 0.272083 21886 126133 -1 2801 15 1227 4049 181470 44257 6.10198 6.10198 -127.567 -6.10198 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0511221 0.0466976 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 6.74 vpr 63.79 MiB -1 -1 0.40 18524 13 0.33 -1 -1 32816 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 24.9 MiB 0.60 1542 6535 1180 4663 692 63.8 MiB 0.11 0.00 8.33266 -174.188 -8.33266 8.33266 0.94 0.00177634 0.00165196 0.0575527 0.0535363 30 4149 47 6.55708e+06 397815 526063. 1820.29 1.90 0.361112 0.327603 21886 126133 -1 3346 32 1689 4692 255507 82872 7.16956 7.16956 -165.377 -7.16956 0 0 666494. 2306.21 0.22 0.22 0.18 -1 -1 0.22 0.112667 0.102513 238 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 8.78 vpr 63.59 MiB -1 -1 0.38 18560 12 0.22 -1 -1 33076 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65116 32 32 290 322 1 219 93 17 17 289 -1 unnamed_device 24.6 MiB 0.40 1337 14373 3637 8257 2479 63.6 MiB 0.20 0.00 7.56736 -150.416 -7.56736 7.56736 0.95 0.00161708 0.00150454 0.114918 0.106868 36 3609 35 6.55708e+06 349595 612192. 2118.31 4.27 0.497534 0.451968 22750 144809 -1 3077 19 1531 4618 265544 67775 6.55324 6.55324 -142.686 -6.55324 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.0638291 0.0581834 198 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 5.62 vpr 62.71 MiB -1 -1 0.32 18040 12 0.15 -1 -1 32964 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64220 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 24.1 MiB 0.51 1128 7404 1881 4703 820 62.7 MiB 0.10 0.00 6.63325 -140.069 -6.63325 6.63325 0.96 0.00116148 0.00107852 0.0501183 0.0464918 30 2616 21 6.55708e+06 241100 526063. 1820.29 1.36 0.196574 0.178211 21886 126133 -1 2314 17 931 2660 129920 31868 5.84792 5.84792 -134.355 -5.84792 0 0 666494. 2306.21 0.21 0.08 0.18 -1 -1 0.21 0.0413193 0.037559 126 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 6.68 vpr 63.21 MiB -1 -1 0.36 18376 12 0.21 -1 -1 32508 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64728 31 32 244 276 1 182 88 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1170 7498 1759 4547 1192 63.2 MiB 0.11 0.00 7.01252 -142.578 -7.01252 7.01252 0.94 0.00133762 0.00123128 0.0550103 0.051021 36 2927 20 6.55708e+06 301375 612192. 2118.31 2.44 0.332137 0.300127 22750 144809 -1 2581 16 1091 3377 188530 45500 5.97978 5.97978 -137.041 -5.97978 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.0454836 0.0413849 154 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 6.24 vpr 63.46 MiB -1 -1 0.38 18348 11 0.20 -1 -1 32848 -1 -1 30 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64980 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 24.6 MiB 0.16 1298 4853 867 3420 566 63.5 MiB 0.08 0.00 6.85992 -133.534 -6.85992 6.85992 0.94 0.00150115 0.00138608 0.0407796 0.0378872 36 3398 25 6.55708e+06 361650 612192. 2118.31 2.17 0.288685 0.260952 22750 144809 -1 2824 13 1076 3445 178277 42212 6.03324 6.03324 -129.396 -6.03324 0 0 782063. 2706.10 0.24 0.09 0.21 -1 -1 0.24 0.0442928 0.040468 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 6.42 vpr 63.16 MiB -1 -1 0.33 18072 11 0.20 -1 -1 32868 -1 -1 27 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64676 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1170 7767 1783 5428 556 63.2 MiB 0.11 0.00 6.49677 -121.518 -6.49677 6.49677 0.95 0.00137838 0.00128235 0.0597134 0.0555569 28 3256 30 6.55708e+06 325485 500653. 1732.36 2.47 0.258173 0.234165 21310 115450 -1 2771 21 1248 4107 245636 56663 5.66238 5.66238 -122.731 -5.66238 0 0 612192. 2118.31 0.20 0.12 0.18 -1 -1 0.20 0.0588296 0.0533787 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.96 vpr 63.29 MiB -1 -1 0.35 18396 13 0.22 -1 -1 32552 -1 -1 26 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64804 30 32 235 267 1 176 88 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1097 11593 3515 6131 1947 63.3 MiB 0.14 0.00 7.49937 -144.316 -7.49937 7.49937 0.94 0.00128121 0.00118983 0.0797169 0.0740515 34 2764 30 6.55708e+06 313430 585099. 2024.56 3.81 0.498967 0.451175 22462 138074 -1 2352 17 1053 3129 161873 39552 6.57678 6.57678 -137.566 -6.57678 0 0 742403. 2568.87 0.23 0.09 0.20 -1 -1 0.23 0.0459473 0.0418538 148 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 7.90 vpr 63.74 MiB -1 -1 0.21 18212 12 0.21 -1 -1 32532 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65272 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 24.6 MiB 0.30 1348 8993 2218 6004 771 63.7 MiB 0.13 0.00 7.3262 -158.713 -7.3262 7.3262 0.94 0.00145321 0.00135208 0.0676067 0.0628754 30 3208 26 6.55708e+06 337540 526063. 1820.29 3.83 0.483024 0.436141 21886 126133 -1 2626 16 1223 3543 167855 40904 6.4035 6.4035 -147.452 -6.4035 0 0 666494. 2306.21 0.22 0.10 0.19 -1 -1 0.22 0.0498282 0.0454059 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 8.00 vpr 63.46 MiB -1 -1 0.35 18276 13 0.28 -1 -1 32908 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64988 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 24.5 MiB 0.28 1215 5718 1125 4239 354 63.5 MiB 0.09 0.00 8.06933 -153.277 -8.06933 8.06933 0.94 0.00154609 0.00143831 0.0487335 0.0453058 28 3309 50 6.55708e+06 325485 500653. 1732.36 3.79 0.529095 0.477483 21310 115450 -1 2880 17 1446 4233 212368 52262 6.7621 6.7621 -146.603 -6.7621 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.0560038 0.0510534 187 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 8.63 vpr 63.65 MiB -1 -1 0.38 18612 14 0.27 -1 -1 32876 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65180 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 24.7 MiB 0.26 1301 9407 2176 6085 1146 63.7 MiB 0.14 0.00 8.35433 -163.826 -8.35433 8.35433 0.97 0.00158646 0.00147481 0.0780342 0.0724675 36 3168 19 6.55708e+06 337540 612192. 2118.31 4.35 0.651866 0.589129 22750 144809 -1 2613 16 1104 3146 155560 38153 7.18182 7.18182 -153.09 -7.18182 0 0 782063. 2706.10 0.22 0.05 0.19 -1 -1 0.22 0.0242837 0.0221711 196 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 12.16 vpr 63.27 MiB -1 -1 0.39 18896 14 0.24 -1 -1 32888 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64784 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1247 10385 2379 5942 2064 63.3 MiB 0.15 0.00 7.58177 -145.01 -7.58177 7.58177 0.94 0.00147723 0.00137327 0.0839292 0.0779777 28 3899 30 6.55708e+06 301375 500653. 1732.36 7.86 0.54979 0.49671 21310 115450 -1 3152 26 1658 5422 385873 113841 6.94904 6.94904 -155.254 -6.94904 0 0 612192. 2118.31 0.20 0.19 0.16 -1 -1 0.20 0.0750047 0.0680058 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.94 vpr 63.50 MiB -1 -1 0.33 18828 13 0.34 -1 -1 33296 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65020 32 32 296 328 1 222 93 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1403 8073 1958 5278 837 63.5 MiB 0.12 0.00 7.90532 -157.651 -7.90532 7.90532 0.94 0.00165498 0.00153323 0.068198 0.0633585 28 4152 21 6.55708e+06 349595 500653. 1732.36 1.66 0.278869 0.253536 21310 115450 -1 3360 19 1662 4819 275486 65310 6.85016 6.85016 -152.938 -6.85016 0 0 612192. 2118.31 0.20 0.14 0.16 -1 -1 0.20 0.0650246 0.059239 205 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 6.07 vpr 63.23 MiB -1 -1 0.32 18176 13 0.18 -1 -1 32680 -1 -1 24 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64744 30 32 234 266 1 185 86 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1086 8024 1919 5617 488 63.2 MiB 0.11 0.00 7.66268 -153.181 -7.66268 7.66268 0.94 0.00125735 0.00116807 0.0570347 0.0529571 26 3255 38 6.55708e+06 289320 477104. 1650.88 1.98 0.253288 0.229605 21022 109990 -1 2663 19 1245 2989 182966 46057 7.14964 7.14964 -155.084 -7.14964 0 0 585099. 2024.56 0.19 0.10 0.15 -1 -1 0.19 0.0497576 0.0452405 146 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.97 vpr 63.69 MiB -1 -1 0.40 18876 13 0.41 -1 -1 32700 -1 -1 32 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65220 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 24.7 MiB 0.33 1416 7336 1414 5551 371 63.7 MiB 0.12 0.00 8.07413 -161.91 -8.07413 8.07413 0.97 0.00162913 0.00152124 0.0626254 0.0584184 30 3688 22 6.55708e+06 385760 526063. 1820.29 1.44 0.278194 0.253318 21886 126133 -1 3160 19 1525 4250 204447 50204 7.0397 7.0397 -156.263 -7.0397 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0657516 0.0600196 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 9.95 vpr 63.54 MiB -1 -1 0.37 18588 14 0.30 -1 -1 32868 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65068 32 32 274 306 1 211 89 17 17 289 -1 unnamed_device 24.7 MiB 0.45 1220 7217 1622 4486 1109 63.5 MiB 0.11 0.00 8.04044 -163.742 -8.04044 8.04044 0.94 0.00153015 0.0014225 0.0602324 0.0559774 38 3297 21 6.55708e+06 301375 638502. 2209.35 5.43 0.575992 0.519889 23326 155178 -1 2587 17 1252 4246 192593 47561 7.01016 7.01016 -152.561 -7.01016 0 0 851065. 2944.86 0.26 0.11 0.22 -1 -1 0.26 0.0553278 0.0503775 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 13.21 vpr 63.30 MiB -1 -1 0.37 18372 13 0.22 -1 -1 32972 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64816 31 32 266 298 1 204 90 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1270 6321 1361 4444 516 63.3 MiB 0.10 0.00 7.62087 -154.066 -7.62087 7.62087 0.94 0.00147016 0.00136756 0.050411 0.0468759 36 3287 48 6.55708e+06 325485 612192. 2118.31 9.05 0.631055 0.568933 22750 144809 -1 2774 15 1192 3524 180977 43190 6.70864 6.70864 -146.557 -6.70864 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.0481494 0.0439626 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 11.42 vpr 63.48 MiB -1 -1 0.39 18616 13 0.21 -1 -1 32892 -1 -1 29 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65004 30 32 266 298 1 204 91 17 17 289 -1 unnamed_device 24.5 MiB 0.47 1241 13555 3513 7863 2179 63.5 MiB 0.18 0.00 7.54758 -141.687 -7.54758 7.54758 0.94 0.00145497 0.00135315 0.10115 0.0940074 30 3456 25 6.55708e+06 349595 526063. 1820.29 6.93 0.536799 0.485632 21886 126133 -1 2692 16 1247 3744 171852 42169 6.4805 6.4805 -134.732 -6.4805 0 0 666494. 2306.21 0.24 0.12 0.18 -1 -1 0.24 0.054143 0.0495416 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 9.29 vpr 63.62 MiB -1 -1 0.39 18528 14 0.34 -1 -1 32996 -1 -1 37 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65144 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1428 8326 1796 5639 891 63.6 MiB 0.13 0.00 8.11569 -168.134 -8.11569 8.11569 0.96 0.00172748 0.00160749 0.0680993 0.0632611 34 4121 28 6.55708e+06 446035 585099. 2024.56 4.67 0.612982 0.554708 22462 138074 -1 3226 18 1534 4211 208577 52962 7.30764 7.30764 -161.965 -7.30764 0 0 742403. 2568.87 0.23 0.12 0.20 -1 -1 0.23 0.0655299 0.0598553 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 11.01 vpr 63.70 MiB -1 -1 0.41 18632 11 0.29 -1 -1 32936 -1 -1 29 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65232 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 24.9 MiB 0.46 1190 5115 1015 3819 281 63.7 MiB 0.10 0.00 6.99314 -135.121 -6.99314 6.99314 0.94 0.00152982 0.00141621 0.0516221 0.0479451 30 3146 30 6.55708e+06 349595 526063. 1820.29 6.53 0.478689 0.432303 21886 126133 -1 2706 16 1195 3389 168249 41222 6.05818 6.05818 -131.202 -6.05818 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0512149 0.0467288 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.67 vpr 62.82 MiB -1 -1 0.30 18076 13 0.16 -1 -1 32728 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64328 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1158 7108 1605 4699 804 62.8 MiB 0.09 0.00 6.94929 -157.648 -6.94929 6.94929 0.94 0.00118447 0.00109984 0.0467016 0.0433566 26 3336 43 6.55708e+06 289320 477104. 1650.88 2.68 0.243266 0.219943 21022 109990 -1 2779 25 1118 2841 222230 69936 6.41938 6.41938 -158.089 -6.41938 0 0 585099. 2024.56 0.20 0.13 0.15 -1 -1 0.20 0.0581867 0.0527386 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 16.57 vpr 63.36 MiB -1 -1 0.37 18536 14 0.23 -1 -1 32984 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64876 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 24.5 MiB 0.39 1272 7751 1792 5305 654 63.4 MiB 0.12 0.00 8.06558 -167.325 -8.06558 8.06558 0.94 0.00149014 0.00137279 0.059723 0.0554332 38 3086 23 6.55708e+06 337540 638502. 2209.35 12.11 0.599111 0.539985 23326 155178 -1 2608 23 1158 3625 219412 76381 6.9985 6.9985 -156.674 -6.9985 0 0 851065. 2944.86 0.28 0.15 0.22 -1 -1 0.28 0.0675413 0.0614273 179 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 6.80 vpr 63.98 MiB -1 -1 0.41 19064 15 0.40 -1 -1 32908 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65516 32 32 334 366 1 261 98 17 17 289 -1 unnamed_device 25.1 MiB 0.32 1649 12023 2996 7449 1578 64.0 MiB 0.19 0.00 8.8435 -186.31 -8.8435 8.8435 0.94 0.00186909 0.00173819 0.107057 0.0995047 30 4591 31 6.55708e+06 409870 526063. 1820.29 2.18 0.377744 0.34421 21886 126133 -1 3440 17 1712 4728 216566 53684 7.96775 7.96775 -180.694 -7.96775 0 0 666494. 2306.21 0.22 0.13 0.18 -1 -1 0.22 0.067373 0.0616275 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 9.85 vpr 62.73 MiB -1 -1 0.31 18084 11 0.18 -1 -1 32912 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64240 32 32 220 252 1 156 85 17 17 289 -1 unnamed_device 24.2 MiB 0.40 923 12361 3928 6475 1958 62.7 MiB 0.14 0.00 6.38603 -130.972 -6.38603 6.38603 0.94 0.00117401 0.00109006 0.081182 0.0752432 30 2403 19 6.55708e+06 253155 526063. 1820.29 5.69 0.381859 0.344855 21886 126133 -1 1931 19 882 2545 114514 29322 5.66498 5.66498 -124.759 -5.66498 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0457954 0.0415878 129 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.11 vpr 63.21 MiB -1 -1 0.30 18084 12 0.18 -1 -1 33260 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64728 31 32 244 276 1 193 90 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1230 7326 1593 5044 689 63.2 MiB 0.10 0.00 6.98403 -147.666 -6.98403 6.98403 0.94 0.00131153 0.00121632 0.0516293 0.0478996 28 3370 50 6.55708e+06 325485 500653. 1732.36 2.05 0.282335 0.255192 21310 115450 -1 2829 16 1217 3391 187318 45788 6.20332 6.20332 -148.075 -6.20332 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0450234 0.0409723 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.55 vpr 63.89 MiB -1 -1 0.38 18580 12 0.31 -1 -1 32972 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65424 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 24.9 MiB 0.32 1497 8199 1839 5577 783 63.9 MiB 0.13 0.00 7.33061 -158.742 -7.33061 7.33061 0.95 0.00170104 0.00157281 0.0700243 0.0650388 30 4296 49 6.55708e+06 385760 526063. 1820.29 2.14 0.366529 0.332731 21886 126133 -1 3182 19 1510 4294 200187 49139 6.2807 6.2807 -150.638 -6.2807 0 0 666494. 2306.21 0.21 0.12 0.18 -1 -1 0.21 0.0668977 0.0609991 213 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 12.77 vpr 63.63 MiB -1 -1 0.37 18608 12 0.24 -1 -1 32896 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65156 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1401 7125 1520 5090 515 63.6 MiB 0.11 0.00 7.67704 -159.687 -7.67704 7.67704 0.94 0.00150058 0.00139547 0.058026 0.0539311 36 3583 29 6.55708e+06 313430 612192. 2118.31 8.38 0.609741 0.550021 22750 144809 -1 3163 16 1330 4165 237480 56144 6.8013 6.8013 -155.736 -6.8013 0 0 782063. 2706.10 0.24 0.11 0.21 -1 -1 0.24 0.0516118 0.0470525 181 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.51 vpr 63.82 MiB -1 -1 0.37 18932 14 0.43 -1 -1 32868 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65352 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 24.6 MiB 0.55 1702 7655 1606 5611 438 63.8 MiB 0.14 0.00 8.96309 -178.872 -8.96309 8.96309 0.95 0.00186215 0.00173168 0.0733471 0.0681692 36 4570 47 6.55708e+06 373705 612192. 2118.31 4.64 0.555088 0.503839 22750 144809 -1 3731 17 1678 5453 283419 67294 7.85922 7.85922 -170.704 -7.85922 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.0678514 0.0621197 234 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 8.91 vpr 63.19 MiB -1 -1 0.36 18408 12 0.22 -1 -1 32860 -1 -1 25 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64708 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 24.1 MiB 0.46 1287 7575 1714 5483 378 63.2 MiB 0.11 0.00 7.47384 -141.76 -7.47384 7.47384 0.95 0.00139426 0.00129956 0.0593751 0.0552827 30 3371 22 6.55708e+06 301375 526063. 1820.29 4.56 0.492938 0.444371 21886 126133 -1 2903 16 1173 3583 181936 43438 6.7621 6.7621 -141.993 -6.7621 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0484073 0.04413 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 7.70 vpr 62.90 MiB -1 -1 0.31 18104 11 0.18 -1 -1 32816 -1 -1 26 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64412 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 24.2 MiB 0.27 931 11989 3061 7291 1637 62.9 MiB 0.15 0.00 6.80335 -123.262 -6.80335 6.80335 0.96 0.00119831 0.00111276 0.0811274 0.0752747 36 2172 17 6.55708e+06 313430 612192. 2118.31 3.54 0.431502 0.38995 22750 144809 -1 2029 17 816 2490 126296 31111 5.83204 5.83204 -116.797 -5.83204 0 0 782063. 2706.10 0.25 0.08 0.21 -1 -1 0.25 0.0433056 0.0394183 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 10.86 vpr 64.05 MiB -1 -1 0.43 19148 13 0.41 -1 -1 33080 -1 -1 40 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65584 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 25.0 MiB 0.44 1770 11816 2824 7429 1563 64.0 MiB 0.20 0.00 8.12254 -164.758 -8.12254 8.12254 0.95 0.00206712 0.00192175 0.106674 0.0991625 40 4317 26 6.55708e+06 482200 666494. 2306.21 5.86 0.829502 0.753504 23614 160646 -1 3982 23 2229 7475 404534 101926 7.03004 7.03004 -157.198 -7.03004 0 0 872365. 3018.56 0.26 0.20 0.24 -1 -1 0.26 0.0955354 0.0872071 286 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 11.19 vpr 63.47 MiB -1 -1 0.42 18548 14 0.25 -1 -1 32972 -1 -1 28 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64996 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.6 MiB 0.23 1247 12127 2952 7653 1522 63.5 MiB 0.17 0.00 7.99624 -158.799 -7.99624 7.99624 0.94 0.00152117 0.00141523 0.0950213 0.0882358 28 3653 26 6.55708e+06 337540 500653. 1732.36 6.86 0.507476 0.459267 21310 115450 -1 3259 21 1747 4998 295326 73654 7.25056 7.25056 -160.468 -7.25056 0 0 612192. 2118.31 0.20 0.15 0.16 -1 -1 0.20 0.0647036 0.0588133 188 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 7.73 vpr 63.08 MiB -1 -1 0.35 18404 12 0.16 -1 -1 32664 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64592 32 32 229 261 1 178 89 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1071 7217 1608 4614 995 63.1 MiB 0.10 0.00 7.1692 -152.502 -7.1692 7.1692 0.95 0.00126418 0.00117436 0.0498162 0.0462061 34 2747 36 6.55708e+06 301375 585099. 2024.56 3.70 0.45749 0.412837 22462 138074 -1 2442 13 995 2709 150230 36718 6.1631 6.1631 -146.45 -6.1631 0 0 742403. 2568.87 0.23 0.08 0.20 -1 -1 0.23 0.0372631 0.0340573 144 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.26 vpr 63.52 MiB -1 -1 0.37 18288 13 0.27 -1 -1 32916 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65040 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 24.7 MiB 0.41 1267 8934 2136 5911 887 63.5 MiB 0.13 0.00 7.70312 -157.904 -7.70312 7.70312 0.94 0.00151891 0.00141381 0.0705494 0.0656009 28 3527 49 6.55708e+06 313430 500653. 1732.36 1.92 0.318022 0.288353 21310 115450 -1 3054 16 1206 3671 221509 53852 6.8039 6.8039 -153.452 -6.8039 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.0511419 0.046611 169 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 7.57 vpr 63.73 MiB -1 -1 0.39 18920 13 0.33 -1 -1 32852 -1 -1 35 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65260 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1613 9323 2087 6739 497 63.7 MiB 0.15 0.00 7.89411 -162.823 -7.89411 7.89411 0.94 0.00176431 0.00164154 0.0785269 0.0729363 36 4202 41 6.55708e+06 421925 612192. 2118.31 3.07 0.512819 0.465115 22750 144809 -1 3580 17 1598 4743 246224 59445 6.6399 6.6399 -151.373 -6.6399 0 0 782063. 2706.10 0.26 0.13 0.21 -1 -1 0.26 0.0645094 0.0589311 233 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.82 vpr 63.45 MiB -1 -1 0.37 18164 11 0.25 -1 -1 32812 -1 -1 33 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64976 30 32 287 319 1 210 95 17 17 289 -1 unnamed_device 24.5 MiB 0.36 1259 9167 2054 6526 587 63.5 MiB 0.14 0.00 6.6803 -129.394 -6.6803 6.6803 0.96 0.00157744 0.00146643 0.071852 0.0667828 36 3565 23 6.55708e+06 397815 612192. 2118.31 3.28 0.415478 0.376101 22750 144809 -1 2906 22 1326 4552 282239 91787 5.99344 5.99344 -126.259 -5.99344 0 0 782063. 2706.10 0.24 0.16 0.21 -1 -1 0.24 0.0699273 0.0636414 201 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 8.49 vpr 63.73 MiB -1 -1 0.40 18544 15 0.33 -1 -1 32880 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65260 32 32 296 328 1 224 93 17 17 289 -1 unnamed_device 24.8 MiB 0.52 1412 8073 1941 5451 681 63.7 MiB 0.13 0.00 9.02973 -184.383 -9.02973 9.02973 0.95 0.00167318 0.00155587 0.0690259 0.0641278 30 3379 28 6.55708e+06 349595 526063. 1820.29 3.85 0.537613 0.487381 21886 126133 -1 2966 18 1342 4208 189311 47448 7.65601 7.65601 -171.089 -7.65601 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0628011 0.0572291 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 12.07 vpr 63.53 MiB -1 -1 0.41 18840 13 0.31 -1 -1 32856 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65052 32 32 285 317 1 225 94 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1398 9040 2290 6006 744 63.5 MiB 0.14 0.00 7.98903 -170.903 -7.98903 7.98903 0.95 0.00162588 0.00151246 0.0739601 0.0687367 38 3124 17 6.55708e+06 361650 638502. 2209.35 7.41 0.650517 0.588045 23326 155178 -1 2809 25 1210 3938 277720 115326 6.9195 6.9195 -159.729 -6.9195 0 0 851065. 2944.86 0.25 0.19 0.22 -1 -1 0.25 0.0799133 0.0726728 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 5.73 vpr 63.34 MiB -1 -1 0.33 17944 12 0.19 -1 -1 32740 -1 -1 29 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64864 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 24.3 MiB 0.42 1189 8934 2259 5724 951 63.3 MiB 0.11 0.00 7.37281 -150.82 -7.37281 7.37281 0.94 0.00129185 0.00120043 0.0612683 0.0568706 28 3099 36 6.55708e+06 349595 500653. 1732.36 1.52 0.258291 0.234196 21310 115450 -1 2710 17 1194 3268 178647 44448 6.8405 6.8405 -150.829 -6.8405 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.046553 0.0423724 157 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.04 vpr 62.84 MiB -1 -1 0.35 18248 11 0.15 -1 -1 32840 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64352 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1123 11059 2941 6474 1644 62.8 MiB 0.14 0.00 6.88435 -140.697 -6.88435 6.88435 0.98 0.00122696 0.00113814 0.0764301 0.0708457 34 2670 23 6.55708e+06 253155 585099. 2024.56 1.97 0.33741 0.305365 22462 138074 -1 2362 20 1050 2733 143904 35388 6.11164 6.11164 -138.09 -6.11164 0 0 742403. 2568.87 0.23 0.10 0.22 -1 -1 0.23 0.0499726 0.0453788 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 6.81 vpr 63.66 MiB -1 -1 0.36 18248 13 0.31 -1 -1 32820 -1 -1 29 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65188 31 32 294 326 1 225 92 17 17 289 -1 unnamed_device 24.7 MiB 0.55 1353 8165 1745 5313 1107 63.7 MiB 0.13 0.00 7.95223 -162.187 -7.95223 7.95223 0.95 0.00162038 0.00150643 0.0688253 0.0639042 30 3827 23 6.55708e+06 349595 526063. 1820.29 2.22 0.289891 0.263369 21886 126133 -1 3112 21 1569 5133 241348 58805 6.94904 6.94904 -154.838 -6.94904 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0696755 0.0634093 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.44 vpr 62.92 MiB -1 -1 0.32 18100 10 0.17 -1 -1 33140 -1 -1 27 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64428 29 32 219 251 1 165 88 17 17 289 -1 unnamed_device 24.3 MiB 0.21 979 6133 1235 4409 489 62.9 MiB 0.08 0.00 5.98168 -119.896 -5.98168 5.98168 0.90 0.00118882 0.00110455 0.0409917 0.0380869 28 2742 40 6.55708e+06 325485 500653. 1732.36 1.53 0.229791 0.207979 21310 115450 -1 2430 25 1013 3039 223697 68946 5.32872 5.32872 -121.999 -5.32872 0 0 612192. 2118.31 0.20 0.13 0.16 -1 -1 0.20 0.0580415 0.05259 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 6.94 vpr 63.41 MiB -1 -1 0.33 18076 14 0.19 -1 -1 32744 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64932 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 24.4 MiB 0.48 1013 10618 2901 6668 1049 63.4 MiB 0.14 0.00 8.01252 -164.615 -8.01252 8.01252 0.94 0.0012842 0.00119278 0.0737835 0.068473 34 3242 41 6.55708e+06 289320 585099. 2024.56 2.58 0.323484 0.293238 22462 138074 -1 2546 17 1144 3277 188693 48724 7.10243 7.10243 -158.912 -7.10243 0 0 742403. 2568.87 0.23 0.10 0.20 -1 -1 0.23 0.046399 0.0422748 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 7.08 vpr 63.48 MiB -1 -1 0.38 18612 13 0.29 -1 -1 32976 -1 -1 30 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65008 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 24.6 MiB 0.29 1277 12063 3078 7002 1983 63.5 MiB 0.16 0.00 7.55489 -160.613 -7.55489 7.55489 0.94 0.00146938 0.00136575 0.0887926 0.0824044 28 4204 46 6.55708e+06 361650 500653. 1732.36 2.71 0.337169 0.305896 21310 115450 -1 3208 25 1581 4698 295132 86325 6.98824 6.98824 -164.653 -6.98824 0 0 612192. 2118.31 0.20 0.18 0.16 -1 -1 0.20 0.079604 0.0722722 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 5.38 vpr 62.65 MiB -1 -1 0.33 18108 12 0.15 -1 -1 32876 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64152 31 32 225 257 1 175 88 17 17 289 -1 unnamed_device 24.0 MiB 0.29 972 13543 3543 8079 1921 62.6 MiB 0.16 0.00 6.46809 -135.985 -6.46809 6.46809 0.94 0.00120637 0.00111234 0.0860722 0.0798462 30 2602 22 6.55708e+06 301375 526063. 1820.29 1.26 0.239332 0.217728 21886 126133 -1 2157 17 955 2638 124988 31516 5.72972 5.72972 -133.065 -5.72972 0 0 666494. 2306.21 0.25 0.08 0.18 -1 -1 0.25 0.0435695 0.0397 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 6.86 vpr 63.49 MiB -1 -1 0.36 18336 12 0.19 -1 -1 32960 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65016 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 24.6 MiB 0.30 1357 6321 1305 4694 322 63.5 MiB 0.10 0.00 7.2805 -151.118 -7.2805 7.2805 0.95 0.00155282 0.001442 0.0534028 0.0495647 36 3208 17 6.55708e+06 313430 612192. 2118.31 2.60 0.374621 0.338913 22750 144809 -1 2782 15 1215 3822 202363 47841 6.23184 6.23184 -142.298 -6.23184 0 0 782063. 2706.10 0.24 0.11 0.21 -1 -1 0.24 0.05115 0.0466717 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 9.10 vpr 63.70 MiB -1 -1 0.40 18588 13 0.28 -1 -1 32960 -1 -1 29 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65232 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 24.8 MiB 0.38 1315 14996 4191 8694 2111 63.7 MiB 0.21 0.00 7.68235 -156.61 -7.68235 7.68235 0.95 0.00160613 0.00149423 0.121331 0.112861 44 2992 16 6.55708e+06 349595 742403. 2568.87 4.39 0.58813 0.53426 24478 177802 -1 2580 16 1069 3416 159742 38702 6.8385 6.8385 -145.938 -6.8385 0 0 937218. 3242.97 0.29 0.10 0.26 -1 -1 0.29 0.0550084 0.0502672 191 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 7.57 vpr 63.22 MiB -1 -1 0.34 18068 11 0.17 -1 -1 32728 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64736 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1156 7217 1433 5081 703 63.2 MiB 0.09 0.00 6.44106 -147.701 -6.44106 6.44106 0.95 0.00124795 0.00115901 0.0490404 0.0455349 28 3181 25 6.55708e+06 301375 500653. 1732.36 3.52 0.354807 0.320404 21310 115450 -1 2696 16 1067 3033 178098 42742 5.64872 5.64872 -141.414 -5.64872 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0434968 0.0396838 148 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.90 vpr 63.40 MiB -1 -1 0.34 18068 13 0.21 -1 -1 32748 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64920 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1221 12568 3500 6849 2219 63.4 MiB 0.17 0.00 7.53241 -157.665 -7.53241 7.53241 0.95 0.00139307 0.00129484 0.093934 0.0872609 36 3327 29 6.55708e+06 289320 612192. 2118.31 4.65 0.50985 0.460808 22750 144809 -1 2648 16 1093 3110 165530 40706 6.6047 6.6047 -151.451 -6.6047 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.0473772 0.0431191 164 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 10.40 vpr 63.48 MiB -1 -1 0.35 18440 13 0.25 -1 -1 33064 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65004 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 24.6 MiB 0.67 1325 8372 1977 5648 747 63.5 MiB 0.13 0.00 7.93261 -169.937 -7.93261 7.93261 0.94 0.00154685 0.00143895 0.0676455 0.0628914 26 4102 43 6.55708e+06 337540 477104. 1650.88 5.53 0.564474 0.509367 21022 109990 -1 3550 57 1724 5063 599662 288841 7.22864 7.22864 -167.854 -7.22864 0 0 585099. 2024.56 0.19 0.41 0.15 -1 -1 0.19 0.155365 0.140652 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 11.97 vpr 63.27 MiB -1 -1 0.34 18364 11 0.19 -1 -1 33396 -1 -1 26 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64784 29 32 243 275 1 185 87 17 17 289 -1 unnamed_device 24.3 MiB 0.23 1095 12183 2952 7495 1736 63.3 MiB 0.16 0.00 6.38849 -124.147 -6.38849 6.38849 0.94 0.00135175 0.00125715 0.0901702 0.083858 28 3438 29 6.55708e+06 313430 500653. 1732.36 7.66 0.567979 0.511332 21310 115450 -1 2735 42 1274 4097 495152 244043 5.42398 5.42398 -119.766 -5.42398 0 0 612192. 2118.31 0.20 0.32 0.16 -1 -1 0.20 0.103163 0.0931115 159 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 6.50 vpr 63.75 MiB -1 -1 0.40 19116 14 0.31 -1 -1 33516 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65276 32 32 318 350 1 250 98 17 17 289 -1 unnamed_device 24.7 MiB 0.33 1560 8198 1613 5991 594 63.7 MiB 0.13 0.00 8.39904 -183.874 -8.39904 8.39904 0.94 0.00178004 0.0016561 0.0699237 0.0650262 30 4258 48 6.55708e+06 409870 526063. 1820.29 2.07 0.378304 0.343667 21886 126133 -1 3418 18 1719 5261 236733 58529 7.24856 7.24856 -173.695 -7.24856 0 0 666494. 2306.21 0.22 0.13 0.18 -1 -1 0.22 0.0675269 0.0616226 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 5.25 vpr 62.92 MiB -1 -1 0.30 17840 12 0.15 -1 -1 32688 -1 -1 26 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64432 31 32 222 254 1 184 89 17 17 289 -1 unnamed_device 24.3 MiB 0.28 937 6029 1160 4001 868 62.9 MiB 0.08 0.00 6.96386 -146.099 -6.96386 6.96386 0.94 0.0012213 0.00114609 0.0395972 0.0367557 30 2725 19 6.55708e+06 313430 526063. 1820.29 1.34 0.186229 0.168685 21886 126133 -1 2198 15 1020 2631 126468 33054 6.13718 6.13718 -139.886 -6.13718 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0388416 0.0354086 139 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.19 vpr 63.62 MiB -1 -1 0.40 18840 13 0.32 -1 -1 32856 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65152 32 32 282 314 1 219 93 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1427 9543 2297 6228 1018 63.6 MiB 0.14 0.00 7.70698 -157.067 -7.70698 7.70698 0.94 0.00155598 0.00144646 0.0751602 0.069821 44 3053 19 6.55708e+06 349595 742403. 2568.87 4.59 0.54144 0.489743 24478 177802 -1 2747 17 1160 3670 170660 40394 6.6399 6.6399 -146.924 -6.6399 0 0 937218. 3242.97 0.29 0.11 0.26 -1 -1 0.29 0.0562163 0.0512972 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 7.72 vpr 63.12 MiB -1 -1 0.36 18208 13 0.18 -1 -1 32676 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64632 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1175 6723 1451 4940 332 63.1 MiB 0.09 0.00 7.59104 -161.75 -7.59104 7.59104 0.95 0.00126533 0.00117582 0.0460764 0.0427808 34 2893 33 6.55708e+06 313430 585099. 2024.56 3.49 0.419538 0.378723 22462 138074 -1 2511 20 1043 2745 175095 53821 6.47024 6.47024 -152.426 -6.47024 0 0 742403. 2568.87 0.24 0.11 0.20 -1 -1 0.24 0.0515351 0.0469313 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 6.13 vpr 63.39 MiB -1 -1 0.37 18736 12 0.21 -1 -1 32892 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64916 32 32 269 301 1 198 90 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1330 9135 2220 6292 623 63.4 MiB 0.14 0.00 6.98077 -149.377 -6.98077 6.98077 0.94 0.00152294 0.00141613 0.0739502 0.068724 30 3414 34 6.55708e+06 313430 526063. 1820.29 1.84 0.304834 0.277104 21886 126133 -1 2729 16 1163 3892 188630 45735 6.43304 6.43304 -145.16 -6.43304 0 0 666494. 2306.21 0.22 0.11 0.20 -1 -1 0.22 0.0529973 0.0483743 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.59 vpr 64.08 MiB -1 -1 0.43 19112 15 0.47 -1 -1 33356 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65620 32 32 350 382 1 271 100 17 17 289 -1 unnamed_device 25.2 MiB 0.25 1801 9380 2328 6382 670 64.1 MiB 0.16 0.00 8.42612 -171.773 -8.42612 8.42612 0.94 0.00201467 0.00187351 0.0871347 0.0809811 30 4959 30 6.55708e+06 433980 526063. 1820.29 2.92 0.381748 0.347981 21886 126133 -1 3945 27 2909 9862 514422 122640 7.41818 7.41818 -166.183 -7.41818 0 0 666494. 2306.21 0.22 0.24 0.18 -1 -1 0.22 0.108597 0.0989538 256 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 5.21 vpr 62.54 MiB -1 -1 0.27 17588 10 0.10 -1 -1 32636 -1 -1 18 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64044 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 23.8 MiB 0.11 895 9024 2291 5391 1342 62.5 MiB 0.10 0.00 5.25257 -121.184 -5.25257 5.25257 0.95 0.000890248 0.000826313 0.0497426 0.0461537 28 2248 50 6.55708e+06 216990 500653. 1732.36 1.52 0.202259 0.182127 21310 115450 -1 2014 33 787 2001 211111 98253 4.68346 4.68346 -123.668 -4.68346 0 0 612192. 2118.31 0.20 0.15 0.16 -1 -1 0.20 0.0538669 0.0483824 92 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 5.35 vpr 63.36 MiB -1 -1 0.34 17996 13 0.18 -1 -1 32800 -1 -1 25 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64876 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 24.4 MiB 0.19 1032 8919 2164 5388 1367 63.4 MiB 0.11 0.00 7.46729 -149.631 -7.46729 7.46729 0.95 0.00125514 0.00116192 0.0614379 0.0570764 28 2961 27 6.55708e+06 301375 500653. 1732.36 1.40 0.232019 0.21064 21310 115450 -1 2440 15 1065 2928 159553 38777 6.76572 6.76572 -146.126 -6.76572 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0406831 0.0370706 143 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 11.47 vpr 63.37 MiB -1 -1 0.34 17936 12 0.19 -1 -1 32736 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64892 32 32 264 296 1 203 90 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1234 5115 926 4061 128 63.4 MiB 0.08 0.00 7.54227 -156.123 -7.54227 7.54227 0.98 0.00143151 0.00133231 0.0400676 0.0372677 28 3889 35 6.55708e+06 313430 500653. 1732.36 7.31 0.462961 0.416235 21310 115450 -1 3012 25 1827 5264 326403 95160 6.59304 6.59304 -156.613 -6.59304 0 0 612192. 2118.31 0.20 0.17 0.16 -1 -1 0.20 0.0700246 0.0634003 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.27 vpr 62.45 MiB -1 -1 0.28 17748 9 0.13 -1 -1 32576 -1 -1 24 25 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 63948 25 32 183 215 1 140 81 17 17 289 -1 unnamed_device 23.6 MiB 0.19 725 12156 3385 6978 1793 62.4 MiB 0.13 0.00 5.27745 -95.2043 -5.27745 5.27745 0.95 0.000992828 0.000921552 0.0736348 0.0683088 26 2335 21 6.55708e+06 289320 477104. 1650.88 1.46 0.200137 0.181564 21022 109990 -1 1914 22 970 2767 167935 50030 5.0736 5.0736 -98.9709 -5.0736 0 0 585099. 2024.56 0.21 0.11 0.15 -1 -1 0.21 0.0484809 0.0439663 111 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.56 vpr 63.73 MiB -1 -1 0.39 18732 12 0.25 -1 -1 32828 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65260 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 24.7 MiB 0.30 1424 11419 2633 7905 881 63.7 MiB 0.16 0.00 7.34317 -159.962 -7.34317 7.34317 0.94 0.00161993 0.00150679 0.0884747 0.0821444 36 3783 39 6.55708e+06 397815 612192. 2118.31 3.14 0.481544 0.436262 22750 144809 -1 3211 16 1530 4402 231749 56679 6.31284 6.31284 -150.535 -6.31284 0 0 782063. 2706.10 0.24 0.12 0.21 -1 -1 0.24 0.055949 0.051036 212 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 15.79 vpr 63.64 MiB -1 -1 0.42 18956 13 0.28 -1 -1 32904 -1 -1 31 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65172 31 32 290 322 1 228 94 17 17 289 -1 unnamed_device 24.7 MiB 0.32 1528 10531 2641 6672 1218 63.6 MiB 0.16 0.00 8.32074 -170.063 -8.32074 8.32074 0.95 0.00164136 0.00152656 0.0862834 0.0802028 34 3921 32 6.55708e+06 373705 585099. 2024.56 11.22 0.708168 0.640415 22462 138074 -1 3336 16 1366 3956 225450 52633 7.3193 7.3193 -162.677 -7.3193 0 0 742403. 2568.87 0.24 0.12 0.22 -1 -1 0.24 0.0591261 0.054059 200 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.11 vpr 63.75 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30056 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65280 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 24.8 MiB 0.31 1021 13017 3203 8186 1628 63.8 MiB 0.19 0.00 5.56529 -159.911 -5.56529 5.56529 0.95 0.00113441 0.00105615 0.0715207 0.0663616 32 2630 23 6.64007e+06 401856 554710. 1919.41 1.14 0.219079 0.199096 22834 132086 -1 2132 22 1540 2254 136724 33907 4.55948 4.55948 -151.016 -4.55948 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0498259 0.0451382 154 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.25 vpr 63.84 MiB -1 -1 0.26 18272 1 0.03 -1 -1 30432 -1 -1 25 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65368 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 25.0 MiB 0.33 1071 13527 3636 8473 1418 63.8 MiB 0.20 0.00 4.97921 -144.408 -4.97921 4.97921 0.99 0.00126507 0.00117127 0.0863224 0.0802279 32 2451 31 6.64007e+06 313950 554710. 1919.41 1.19 0.25281 0.229846 22834 132086 -1 2105 20 1569 2389 140662 35686 4.22689 4.22689 -142.536 -4.22689 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0464321 0.0420863 141 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.97 vpr 63.35 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64872 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 24.6 MiB 0.31 1084 15639 4927 8621 2091 63.4 MiB 0.20 0.00 4.35433 -126.133 -4.35433 4.35433 0.95 0.00100749 0.00093627 0.0847448 0.0788319 32 2377 19 6.64007e+06 288834 554710. 1919.41 1.05 0.207567 0.189004 22834 132086 -1 2081 19 1182 1653 111098 26502 3.57863 3.57863 -121.687 -3.57863 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.038773 0.0350302 126 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.83 vpr 63.35 MiB -1 -1 0.25 18372 1 0.03 -1 -1 30464 -1 -1 27 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64868 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 24.3 MiB 0.12 931 15103 4868 7954 2281 63.3 MiB 0.19 0.00 4.52953 -121.776 -4.52953 4.52953 0.95 0.00102587 0.000954326 0.0827374 0.0769834 32 2233 21 6.64007e+06 339066 554710. 1919.41 1.12 0.211459 0.192468 22834 132086 -1 1991 21 1376 2561 177420 41279 3.65563 3.65563 -117.014 -3.65563 0 0 701300. 2426.64 0.22 0.09 0.11 -1 -1 0.22 0.0429098 0.0388074 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.73 vpr 63.45 MiB -1 -1 0.13 18248 1 0.03 -1 -1 30600 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64972 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1007 10071 2662 6608 801 63.4 MiB 0.15 0.00 4.57112 -132.997 -4.57112 4.57112 0.96 0.00111885 0.00104086 0.0615836 0.0572588 32 2377 18 6.64007e+06 288834 554710. 1919.41 1.11 0.195667 0.177865 22834 132086 -1 2115 19 1435 2754 170317 40306 3.44103 3.44103 -124.123 -3.44103 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0426287 0.0385979 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.18 vpr 63.86 MiB -1 -1 0.25 18296 1 0.03 -1 -1 30440 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65392 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 24.8 MiB 0.17 1017 13373 3190 9207 976 63.9 MiB 0.19 0.00 3.5011 -120.17 -3.5011 3.5011 0.98 0.00117349 0.00109059 0.0735312 0.0683903 28 2578 43 6.64007e+06 426972 500653. 1732.36 1.37 0.264666 0.2401 21970 115934 -1 2262 18 1292 2095 134584 33662 3.02637 3.02637 -121.062 -3.02637 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0430686 0.0390654 142 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.61 vpr 62.81 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30708 -1 -1 19 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64320 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 24.1 MiB 0.12 699 11034 3536 5995 1503 62.8 MiB 0.13 0.00 3.75638 -102.609 -3.75638 3.75638 0.95 0.00083998 0.000778418 0.0602253 0.0560109 32 1575 21 6.64007e+06 238602 554710. 1919.41 1.03 0.169258 0.153356 22834 132086 -1 1402 17 840 1433 98556 23855 2.88397 2.88397 -95.6412 -2.88397 0 0 701300. 2426.64 0.22 0.06 0.19 -1 -1 0.22 0.0306838 0.0276631 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.00 vpr 63.09 MiB -1 -1 0.26 17828 1 0.03 -1 -1 30188 -1 -1 31 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64604 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 24.4 MiB 0.11 827 11383 2423 8400 560 63.1 MiB 0.15 0.00 3.48559 -101.391 -3.48559 3.48559 0.96 0.000948374 0.0008819 0.0596497 0.055338 28 2166 29 6.64007e+06 389298 500653. 1732.36 1.31 0.191354 0.173295 21970 115934 -1 1832 17 987 1741 111023 27323 2.87597 2.87597 -98.8047 -2.87597 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0333842 0.030139 115 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.95 vpr 63.38 MiB -1 -1 0.24 18284 1 0.03 -1 -1 30316 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64896 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 24.4 MiB 0.25 888 14123 4595 7521 2007 63.4 MiB 0.18 0.00 3.62422 -120.034 -3.62422 3.62422 0.95 0.000952848 0.000886321 0.0824932 0.0766425 32 2000 18 6.64007e+06 251160 554710. 1919.41 1.05 0.203783 0.185134 22834 132086 -1 1747 14 982 1440 85693 20647 3.26003 3.26003 -119.706 -3.26003 0 0 701300. 2426.64 0.22 0.06 0.19 -1 -1 0.22 0.0304998 0.0277044 111 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.86 vpr 63.31 MiB -1 -1 0.24 18188 1 0.03 -1 -1 30248 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64832 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 24.7 MiB 0.18 874 11631 3631 6742 1258 63.3 MiB 0.16 0.00 3.92955 -127.77 -3.92955 3.92955 0.94 0.00102836 0.000958583 0.0710426 0.0662285 32 1950 21 6.64007e+06 213486 554710. 1919.41 1.08 0.19867 0.180785 22834 132086 -1 1805 20 1186 1945 126227 29868 2.95737 2.95737 -117.769 -2.95737 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0411032 0.0370719 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.64 vpr 63.32 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30460 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64844 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 24.2 MiB 0.17 728 11571 3255 7389 927 63.3 MiB 0.15 0.00 4.13115 -112.218 -4.13115 4.13115 0.95 0.000973113 0.000904072 0.0692793 0.0643659 28 1682 16 6.64007e+06 213486 500653. 1732.36 1.01 0.182992 0.165961 21970 115934 -1 1524 16 825 1262 82143 20178 2.86596 2.86596 -102.257 -2.86596 0 0 612192. 2118.31 0.20 0.06 0.17 -1 -1 0.20 0.0324451 0.0293213 98 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.87 vpr 63.00 MiB -1 -1 0.22 17928 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64508 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 24.3 MiB 0.27 793 12008 4621 6063 1324 63.0 MiB 0.15 0.00 3.82041 -120.517 -3.82041 3.82041 0.95 0.000925939 0.000859971 0.0650489 0.0604691 32 2196 20 6.64007e+06 226044 554710. 1919.41 1.08 0.187508 0.170031 22834 132086 -1 1870 18 1172 1583 120312 28668 2.96937 2.96937 -114.739 -2.96937 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0343449 0.030952 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.27 vpr 63.61 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30332 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65140 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.7 MiB 0.31 1104 18028 6323 9464 2241 63.6 MiB 0.26 0.00 4.4826 -145.148 -4.4826 4.4826 0.98 0.00113849 0.00105884 0.107846 0.100348 32 2388 22 6.64007e+06 301392 554710. 1919.41 1.17 0.25246 0.230347 22834 132086 -1 2151 19 1541 2314 146376 34450 3.17763 3.17763 -124.922 -3.17763 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0437899 0.0397136 139 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.93 vpr 63.78 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30528 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65312 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.6 MiB 0.18 965 15215 3853 10047 1315 63.8 MiB 0.23 0.00 4.76344 -140.281 -4.76344 4.76344 0.94 0.00116081 0.00107889 0.0851664 0.0792084 28 2295 24 6.64007e+06 389298 500653. 1732.36 1.07 0.236193 0.214988 21970 115934 -1 2072 21 1633 2760 164375 40950 3.88783 3.88783 -134.719 -3.88783 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.048176 0.043581 134 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.52 vpr 63.01 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30536 -1 -1 21 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64520 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.3 MiB 0.14 748 11118 2695 7379 1044 63.0 MiB 0.12 0.00 3.28519 -93.7186 -3.28519 3.28519 0.94 0.000847935 0.000788128 0.0550566 0.0511481 28 1754 18 6.64007e+06 263718 500653. 1732.36 0.96 0.15643 0.14163 21970 115934 -1 1488 19 779 1338 81861 19748 2.55737 2.55737 -89.7738 -2.55737 0 0 612192. 2118.31 0.20 0.06 0.17 -1 -1 0.20 0.0325018 0.029287 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.06 vpr 63.91 MiB -1 -1 0.24 18280 1 0.03 -1 -1 30308 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65440 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 24.8 MiB 0.21 1002 9914 2245 7192 477 63.9 MiB 0.15 0.00 4.06227 -126.501 -4.06227 4.06227 0.98 0.00120044 0.0011161 0.0655258 0.0609551 32 2444 20 6.64007e+06 276276 554710. 1919.41 1.15 0.220124 0.200017 22834 132086 -1 2132 19 1434 2521 163148 38902 3.08637 3.08637 -120.095 -3.08637 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0456093 0.0413484 133 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.01 vpr 63.54 MiB -1 -1 0.24 18308 1 0.03 -1 -1 30220 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65060 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 24.6 MiB 0.29 1138 14679 4370 8457 1852 63.5 MiB 0.20 0.00 4.43584 -143.418 -4.43584 4.43584 0.94 0.0011155 0.00103796 0.0886114 0.0824428 30 2656 21 6.64007e+06 288834 526063. 1820.29 1.08 0.22946 0.20911 22546 126617 -1 2265 20 1292 1882 116241 27436 3.36643 3.36643 -130.39 -3.36643 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.044979 0.0407346 138 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.70 vpr 63.34 MiB -1 -1 0.24 18260 1 0.03 -1 -1 30452 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64864 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 24.4 MiB 0.15 793 7443 1484 5603 356 63.3 MiB 0.10 0.00 2.85064 -101.719 -2.85064 2.85064 0.95 0.00103263 0.000959392 0.039378 0.036594 30 1830 16 6.64007e+06 364182 526063. 1820.29 1.01 0.159816 0.144443 22546 126617 -1 1539 16 957 1540 77734 19671 2.18971 2.18971 -95.831 -2.18971 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0343851 0.0311006 110 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.39 vpr 62.75 MiB -1 -1 0.21 17920 1 0.02 -1 -1 30220 -1 -1 15 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64252 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.9 MiB 0.08 601 7249 1675 5111 463 62.7 MiB 0.08 0.00 2.38033 -78.5571 -2.38033 2.38033 0.95 0.000755976 0.000701957 0.0355458 0.0329944 28 1455 21 6.64007e+06 188370 500653. 1732.36 0.97 0.131596 0.11835 21970 115934 -1 1259 16 617 870 64000 15697 1.94311 1.94311 -80.1731 -1.94311 0 0 612192. 2118.31 0.20 0.05 0.16 -1 -1 0.20 0.0249518 0.0224184 81 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.90 vpr 63.43 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30508 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64948 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 24.7 MiB 0.28 927 14123 4588 7430 2105 63.4 MiB 0.18 0.00 4.95484 -148.86 -4.95484 4.95484 0.94 0.00096819 0.00089993 0.078723 0.0731765 30 2073 21 6.64007e+06 251160 526063. 1820.29 1.04 0.200749 0.182495 22546 126617 -1 1824 17 898 1311 76987 18555 3.72063 3.72063 -131.532 -3.72063 0 0 666494. 2306.21 0.23 0.07 0.18 -1 -1 0.23 0.0342396 0.0310066 128 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.72 vpr 63.52 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30508 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65040 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 24.4 MiB 0.12 927 7007 1409 5318 280 63.5 MiB 0.11 0.00 4.20815 -131.502 -4.20815 4.20815 0.94 0.00112831 0.00104908 0.0397715 0.036922 30 2173 24 6.64007e+06 389298 526063. 1820.29 1.09 0.186902 0.169143 22546 126617 -1 1890 22 1216 2048 117477 28338 3.44843 3.44843 -125.159 -3.44843 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0487717 0.0441577 135 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.94 vpr 63.83 MiB -1 -1 0.26 18404 1 0.03 -1 -1 30412 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65360 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 24.9 MiB 0.31 1165 13949 4134 8420 1395 63.8 MiB 0.22 0.00 4.61182 -142.746 -4.61182 4.61182 0.95 0.00120784 0.0011241 0.091498 0.0850888 32 2695 21 6.64007e+06 313950 554710. 1919.41 1.15 0.240269 0.218763 22834 132086 -1 2292 22 1600 2498 159590 37468 3.74383 3.74383 -132.012 -3.74383 0 0 701300. 2426.64 0.22 0.10 0.21 -1 -1 0.22 0.0518942 0.0469668 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 5.32 vpr 62.68 MiB -1 -1 0.22 18100 1 0.02 -1 -1 30696 -1 -1 18 26 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64184 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.1 MiB 0.16 372 9836 3040 4897 1899 62.7 MiB 0.08 0.00 2.3975 -64.4977 -2.3975 2.3975 0.96 0.00064154 0.000594393 0.0415753 0.03856 34 1009 35 6.64007e+06 226044 585099. 2024.56 1.72 0.189664 0.169644 23122 138558 -1 755 19 554 805 44788 13806 1.83391 1.83391 -61.4517 -1.83391 0 0 742403. 2568.87 0.23 0.05 0.20 -1 -1 0.23 0.0246291 0.0220752 77 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.74 vpr 63.08 MiB -1 -1 0.22 17860 1 0.03 -1 -1 30340 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64592 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 24.3 MiB 0.12 995 9571 2665 6351 555 63.1 MiB 0.14 0.00 4.78226 -126.055 -4.78226 4.78226 0.95 0.000986594 0.000918007 0.0538777 0.050154 28 2167 21 6.64007e+06 263718 500653. 1732.36 1.06 0.18163 0.164933 21970 115934 -1 2025 17 1048 1918 123715 29585 3.66862 3.66862 -120.925 -3.66862 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0440791 0.0396268 118 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.56 vpr 62.59 MiB -1 -1 0.23 17364 1 0.02 -1 -1 30116 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64092 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.8 MiB 0.07 542 9374 3354 4039 1981 62.6 MiB 0.08 0.00 2.60773 -75.9678 -2.60773 2.60773 0.95 0.000627646 0.000581103 0.0371544 0.0343998 26 1346 45 6.64007e+06 175812 477104. 1650.88 1.16 0.139146 0.124775 21682 110474 -1 1067 17 493 586 42551 11043 2.09951 2.09951 -73.2982 -2.09951 0 0 585099. 2024.56 0.19 0.05 0.16 -1 -1 0.19 0.0219766 0.0197074 79 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.70 vpr 63.17 MiB -1 -1 0.23 18444 1 0.04 -1 -1 30068 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64688 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 24.5 MiB 0.12 888 9892 2278 7158 456 63.2 MiB 0.13 0.00 4.63801 -125.739 -4.63801 4.63801 0.95 0.0010114 0.000941155 0.0498357 0.0463361 26 2296 25 6.64007e+06 376740 477104. 1650.88 1.14 0.184414 0.167013 21682 110474 -1 1850 20 1049 1836 123567 29900 3.73763 3.73763 -117.713 -3.73763 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0406567 0.0367845 123 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.73 vpr 63.29 MiB -1 -1 0.23 17804 1 0.03 -1 -1 30628 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64808 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1023 7871 1717 5540 614 63.3 MiB 0.12 0.00 3.86807 -111.494 -3.86807 3.86807 0.95 0.00103141 0.000960341 0.0407839 0.0379773 30 2142 19 6.64007e+06 389298 526063. 1820.29 1.11 0.173807 0.157542 22546 126617 -1 1949 19 1028 1855 102888 24494 2.75077 2.75077 -104.641 -2.75077 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0395746 0.0358597 128 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.05 vpr 63.77 MiB -1 -1 0.24 18352 1 0.04 -1 -1 30544 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65304 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 24.7 MiB 0.20 1020 17431 5202 10159 2070 63.8 MiB 0.23 0.00 4.78258 -136.405 -4.78258 4.78258 0.97 0.00112047 0.00104311 0.0972175 0.0904177 32 2379 23 6.64007e+06 339066 554710. 1919.41 1.11 0.238921 0.217746 22834 132086 -1 1990 18 1184 2025 114741 28664 3.71762 3.71762 -126.563 -3.71762 0 0 701300. 2426.64 0.22 0.08 0.20 -1 -1 0.22 0.0403505 0.0365656 126 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.68 vpr 63.11 MiB -1 -1 0.21 17944 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64624 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 24.3 MiB 0.10 785 11260 3393 5970 1897 63.1 MiB 0.14 0.00 3.03896 -100.907 -3.03896 3.03896 0.95 0.000952072 0.000884933 0.0651965 0.0606333 32 1787 24 6.64007e+06 200928 554710. 1919.41 1.05 0.189052 0.17126 22834 132086 -1 1528 18 815 1359 85497 20765 2.69497 2.69497 -100.559 -2.69497 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.0349917 0.0316107 101 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.56 vpr 62.81 MiB -1 -1 0.23 18184 1 0.03 -1 -1 30360 -1 -1 23 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64320 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.1 MiB 0.11 760 10873 2730 7151 992 62.8 MiB 0.10 0.00 3.24119 -98.8846 -3.24119 3.24119 0.95 0.00033427 0.00030686 0.0432273 0.0399024 32 1691 21 6.64007e+06 288834 554710. 1919.41 0.99 0.153343 0.138223 22834 132086 -1 1536 18 830 1275 86878 20266 2.67477 2.67477 -96.8355 -2.67477 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.0323837 0.0291403 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.61 vpr 63.03 MiB -1 -1 0.25 18104 1 0.03 -1 -1 30252 -1 -1 23 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64544 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.2 MiB 0.10 598 14123 3741 8412 1970 63.0 MiB 0.16 0.00 3.43604 -92.6832 -3.43604 3.43604 0.95 0.000882622 0.000819368 0.071488 0.066363 28 1748 20 6.64007e+06 288834 500653. 1732.36 1.01 0.180259 0.163539 21970 115934 -1 1440 19 869 1516 97363 24082 2.71057 2.71057 -91.9731 -2.71057 0 0 612192. 2118.31 0.20 0.07 0.16 -1 -1 0.20 0.0335216 0.0301859 98 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.58 vpr 63.04 MiB -1 -1 0.22 17800 1 0.03 -1 -1 30456 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64548 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.2 MiB 0.11 743 5843 1254 4169 420 63.0 MiB 0.09 0.00 3.98815 -115.073 -3.98815 3.98815 0.94 0.000891431 0.00082961 0.031355 0.0291751 30 1829 21 6.64007e+06 238602 526063. 1820.29 1.03 0.143052 0.129016 22546 126617 -1 1533 18 877 1441 73591 18570 2.85697 2.85697 -105.713 -2.85697 0 0 666494. 2306.21 0.21 0.06 0.18 -1 -1 0.21 0.0327945 0.0296035 110 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.14 vpr 63.01 MiB -1 -1 0.24 17968 1 0.03 -1 -1 30536 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64520 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.3 MiB 0.10 870 7728 1633 5460 635 63.0 MiB 0.05 0.00 3.60767 -107.985 -3.60767 3.60767 0.66 0.000348077 0.000319902 0.0149114 0.0137195 30 1851 20 6.64007e+06 339066 526063. 1820.29 0.89 0.12121 0.108697 22546 126617 -1 1601 21 775 1343 71243 17258 2.83497 2.83497 -100.344 -2.83497 0 0 666494. 2306.21 0.24 0.07 0.18 -1 -1 0.24 0.0396272 0.0357219 103 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.61 vpr 63.39 MiB -1 -1 0.24 18272 1 0.03 -1 -1 30484 -1 -1 26 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64908 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 24.7 MiB 0.19 695 8727 2118 5729 880 63.4 MiB 0.12 0.00 3.3589 -102.835 -3.3589 3.3589 0.95 0.000947506 0.000881101 0.0455423 0.0423168 28 1823 19 6.64007e+06 326508 500653. 1732.36 0.97 0.160498 0.145036 21970 115934 -1 1592 18 855 1284 71887 18852 2.49117 2.49117 -97.7327 -2.49117 0 0 612192. 2118.31 0.22 0.07 0.17 -1 -1 0.22 0.0352107 0.0317461 105 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.95 vpr 63.85 MiB -1 -1 0.25 18260 1 0.03 -1 -1 30696 -1 -1 38 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65384 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 24.9 MiB 0.19 1108 10812 2420 7290 1102 63.9 MiB 0.17 0.00 4.35696 -124.357 -4.35696 4.35696 0.95 0.00121348 0.00112967 0.0587399 0.0546964 26 3359 43 6.64007e+06 477204 477104. 1650.88 2.17 0.260786 0.23644 21682 110474 -1 2514 21 1385 2602 184985 44310 3.82183 3.82183 -126.232 -3.82183 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0506781 0.0459549 151 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 5.00 vpr 64.00 MiB -1 -1 0.25 18176 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65540 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 25.1 MiB 0.19 971 9971 2311 7104 556 64.0 MiB 0.17 0.00 3.87558 -129.13 -3.87558 3.87558 0.99 0.00124395 0.00115746 0.061657 0.0573424 26 2539 21 6.64007e+06 464646 477104. 1650.88 1.18 0.218018 0.198105 21682 110474 -1 2085 21 1656 2599 166147 40307 3.24157 3.24157 -125.556 -3.24157 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0519184 0.0470698 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.82 vpr 63.17 MiB -1 -1 0.24 18172 1 0.03 -1 -1 30180 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64688 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 24.5 MiB 0.26 962 12186 3847 6704 1635 63.2 MiB 0.15 0.00 4.35701 -128.587 -4.35701 4.35701 0.94 0.000902362 0.00083538 0.0662215 0.0614999 32 2047 19 6.64007e+06 238602 554710. 1919.41 1.03 0.179523 0.162838 22834 132086 -1 1817 21 1129 1615 110563 26215 3.22583 3.22583 -117.545 -3.22583 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0391249 0.0352785 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.00 vpr 63.80 MiB -1 -1 0.27 18388 1 0.03 -1 -1 30488 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65328 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 0.18 1023 13933 4615 7223 2095 63.8 MiB 0.20 0.00 4.04757 -131.412 -4.04757 4.04757 0.94 0.00117866 0.0010957 0.0873286 0.081195 32 2420 20 6.64007e+06 313950 554710. 1919.41 1.13 0.233502 0.21257 22834 132086 -1 2108 19 1502 2614 174444 41187 3.06017 3.06017 -114.928 -3.06017 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.045272 0.0410549 138 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.77 vpr 63.56 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30392 -1 -1 29 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65088 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 24.9 MiB 0.46 1128 17687 5057 9627 3003 63.6 MiB 0.26 0.00 5.89333 -173.14 -5.89333 5.89333 1.03 0.00120418 0.00111909 0.106801 0.0993572 32 3533 39 6.64007e+06 364182 554710. 1919.41 1.45 0.2928 0.266533 22834 132086 -1 2396 20 2294 3421 209956 53413 5.05535 5.05535 -167.453 -5.05535 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.048104 0.0435813 172 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.09 vpr 63.84 MiB -1 -1 0.27 18156 1 0.03 -1 -1 30552 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65368 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 24.9 MiB 0.37 1191 15768 5423 8594 1751 63.8 MiB 0.23 0.00 5.08361 -153.384 -5.08361 5.08361 0.95 0.00121279 0.00112719 0.0986837 0.0917509 32 2694 22 6.64007e+06 339066 554710. 1919.41 1.01 0.193984 0.176908 22834 132086 -1 2378 22 1825 2876 223280 49132 4.42128 4.42128 -147.192 -4.42128 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0528664 0.0479596 164 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.88 vpr 63.69 MiB -1 -1 0.25 18324 1 0.03 -1 -1 30660 -1 -1 31 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65216 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 24.8 MiB 0.19 1006 12661 3249 8412 1000 63.7 MiB 0.19 0.00 4.68524 -135.636 -4.68524 4.68524 0.95 0.00113424 0.00105497 0.0706321 0.0657044 32 2392 21 6.64007e+06 389298 554710. 1919.41 1.09 0.21282 0.193528 22834 132086 -1 2077 16 961 1629 98360 24091 3.25537 3.25537 -118.631 -3.25537 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0380904 0.0346177 135 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.92 vpr 63.24 MiB -1 -1 0.16 18368 1 0.03 -1 -1 30504 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64760 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 24.5 MiB 0.23 1073 14679 4707 8091 1881 63.2 MiB 0.20 0.00 4.36796 -119.855 -4.36796 4.36796 0.97 0.000980534 0.000911587 0.0778336 0.0723722 26 2756 25 6.64007e+06 288834 477104. 1650.88 1.23 0.206244 0.187305 21682 110474 -1 2182 19 1274 1894 139555 32712 3.63282 3.63282 -120.471 -3.63282 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0378691 0.0342375 119 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.36 vpr 63.85 MiB -1 -1 0.27 18536 1 0.03 -1 -1 30472 -1 -1 40 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65380 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 25.3 MiB 0.22 1249 19868 5433 11877 2558 63.8 MiB 0.29 0.00 5.1415 -166.814 -5.1415 5.1415 1.03 0.00145539 0.00135587 0.121751 0.113399 32 2917 19 6.64007e+06 502320 554710. 1919.41 1.18 0.298413 0.272684 22834 132086 -1 2459 20 1618 2531 146683 35129 3.92403 3.92403 -148.339 -3.92403 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.057389 0.0520321 174 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.55 vpr 62.97 MiB -1 -1 0.24 18284 1 0.03 -1 -1 30300 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64484 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.2 MiB 0.12 803 5025 1005 3649 371 63.0 MiB 0.07 0.00 3.83987 -104.278 -3.83987 3.83987 0.95 0.000883778 0.000821529 0.0266466 0.0247737 30 1772 19 6.64007e+06 263718 526063. 1820.29 1.01 0.134096 0.120705 22546 126617 -1 1572 19 812 1452 83019 19506 2.74977 2.74977 -98.2838 -2.74977 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0337661 0.0303901 101 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.52 vpr 63.66 MiB -1 -1 0.25 18228 1 0.03 -1 -1 30292 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65184 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 24.7 MiB 0.30 1162 10228 2647 6642 939 63.7 MiB 0.16 0.00 5.14752 -155.108 -5.14752 5.14752 0.97 0.00111243 0.00103534 0.0617429 0.0574785 26 3029 20 6.64007e+06 313950 477104. 1650.88 1.64 0.202377 0.183716 21682 110474 -1 2534 19 1389 2046 138895 32859 4.50448 4.50448 -151.289 -4.50448 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0430927 0.039069 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.15 vpr 63.66 MiB -1 -1 0.25 18476 1 0.03 -1 -1 30368 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65188 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.5 MiB 0.19 884 8755 1783 6202 770 63.7 MiB 0.13 0.00 3.97129 -116.286 -3.97129 3.97129 0.98 0.00112898 0.00104916 0.0499807 0.0465831 30 2382 25 6.64007e+06 414414 526063. 1820.29 1.32 0.202979 0.183812 22546 126617 -1 1682 21 980 1774 87977 23374 3.00716 3.00716 -106.694 -3.00716 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0467629 0.0423748 131 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.68 vpr 63.31 MiB -1 -1 0.22 17776 1 0.03 -1 -1 30112 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64828 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 24.6 MiB 0.12 912 5938 1237 4353 348 63.3 MiB 0.09 0.00 4.13756 -120.743 -4.13756 4.13756 0.94 0.00100573 0.00093648 0.033468 0.0311472 32 2207 20 6.64007e+06 301392 554710. 1919.41 1.07 0.159451 0.144394 22834 132086 -1 1883 19 1149 2103 119089 29068 3.44423 3.44423 -118.265 -3.44423 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0383935 0.034715 123 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.12 vpr 63.70 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30416 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65224 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1010 13933 3725 7818 2390 63.7 MiB 0.20 0.00 4.75998 -138.258 -4.75998 4.75998 0.96 0.00113985 0.00105873 0.0860434 0.0797146 32 2351 21 6.64007e+06 301392 554710. 1919.41 1.12 0.231636 0.210366 22834 132086 -1 2055 20 1136 1594 106990 25617 3.24937 3.24937 -120.477 -3.24937 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0457378 0.0413951 138 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.21 vpr 63.83 MiB -1 -1 0.25 18284 1 0.03 -1 -1 30364 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65364 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 24.7 MiB 0.21 1025 10827 2395 7683 749 63.8 MiB 0.17 0.00 3.7957 -125.338 -3.7957 3.7957 0.95 0.00116478 0.00108365 0.0607166 0.0564878 26 2715 21 6.64007e+06 401856 477104. 1650.88 1.48 0.206584 0.187658 21682 110474 -1 2241 20 1345 2350 153442 36640 3.13037 3.13037 -123.373 -3.13037 0 0 585099. 2024.56 0.19 0.09 0.15 -1 -1 0.19 0.04635 0.042056 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.86 vpr 63.79 MiB -1 -1 0.25 18288 1 0.03 -1 -1 30328 -1 -1 37 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1100 11381 2833 7714 834 63.8 MiB 0.17 0.00 4.776 -146.002 -4.776 4.776 0.94 0.00121451 0.0011297 0.062217 0.0578553 30 2363 19 6.64007e+06 464646 526063. 1820.29 1.08 0.210964 0.19173 22546 126617 -1 2017 18 959 1496 74038 18603 3.47103 3.47103 -127.545 -3.47103 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0446717 0.040563 145 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.71 vpr 63.43 MiB -1 -1 0.23 18256 1 0.03 -1 -1 30320 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64952 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 24.4 MiB 0.10 831 7023 1481 5311 231 63.4 MiB 0.11 0.00 4.19967 -120.534 -4.19967 4.19967 0.99 0.00102347 0.000951291 0.0375313 0.0348661 30 2144 21 6.64007e+06 364182 526063. 1820.29 1.07 0.166346 0.150384 22546 126617 -1 1646 22 1069 1969 105824 25932 3.31003 3.31003 -111.269 -3.31003 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0443558 0.040067 122 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.91 vpr 63.60 MiB -1 -1 0.23 18256 1 0.03 -1 -1 30256 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65128 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1052 7888 1681 5591 616 63.6 MiB 0.12 0.00 5.2222 -143.082 -5.2222 5.2222 0.95 0.00106452 0.000989126 0.0458746 0.042665 28 2534 22 6.64007e+06 301392 500653. 1732.36 1.11 0.181049 0.164067 21970 115934 -1 2253 17 1371 2023 130172 31411 3.69362 3.69362 -130.545 -3.69362 0 0 612192. 2118.31 0.23 0.08 0.16 -1 -1 0.23 0.037599 0.0340863 133 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.17 vpr 63.73 MiB -1 -1 0.27 18400 1 0.03 -1 -1 30380 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65256 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1063 10423 2679 6644 1100 63.7 MiB 0.17 0.00 5.14867 -149.83 -5.14867 5.14867 0.95 0.00118371 0.00110104 0.066586 0.0619539 32 2919 21 6.64007e+06 313950 554710. 1919.41 1.18 0.215464 0.195678 22834 132086 -1 2359 21 1531 2448 157081 37904 4.13769 4.13769 -142.034 -4.13769 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0494173 0.0447715 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.04 vpr 63.79 MiB -1 -1 0.25 18284 1 0.03 -1 -1 30416 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 25.0 MiB 0.22 998 9347 2521 6007 819 63.8 MiB 0.15 0.00 4.34527 -132.181 -4.34527 4.34527 0.95 0.00121278 0.00112745 0.063873 0.0593971 32 2608 18 6.64007e+06 276276 554710. 1919.41 1.15 0.210377 0.191245 22834 132086 -1 2226 21 1587 2897 190326 44747 3.58962 3.58962 -127.852 -3.58962 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0505615 0.0457785 136 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.60 vpr 62.92 MiB -1 -1 0.22 18016 1 0.03 -1 -1 30636 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64432 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.1 MiB 0.08 707 15103 5445 7308 2350 62.9 MiB 0.16 0.00 3.43127 -100.64 -3.43127 3.43127 0.95 0.00086951 0.000808347 0.0694253 0.0645048 30 1722 23 6.64007e+06 301392 526063. 1820.29 1.03 0.179752 0.162946 22546 126617 -1 1408 16 637 1027 67365 15926 2.62157 2.62157 -90.7148 -2.62157 0 0 666494. 2306.21 0.22 0.06 0.18 -1 -1 0.22 0.0288397 0.0259931 97 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.90 vpr 63.70 MiB -1 -1 0.24 18364 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65228 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 24.9 MiB 0.27 879 16907 6072 8286 2549 63.7 MiB 0.22 0.00 4.05536 -136.666 -4.05536 4.05536 0.99 0.00108488 0.00100822 0.099856 0.0927793 30 2444 21 6.64007e+06 276276 526063. 1820.29 1.13 0.237601 0.216482 22546 126617 -1 1866 19 1376 1970 125453 29744 3.32757 3.32757 -125.65 -3.32757 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0416254 0.0376539 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.66 vpr 64.28 MiB -1 -1 0.27 18320 1 0.03 -1 -1 30400 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65820 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 25.2 MiB 0.33 1389 17943 5716 10178 2049 64.3 MiB 0.29 0.00 5.4603 -164.178 -5.4603 5.4603 0.97 0.00127027 0.00118243 0.112296 0.104538 28 3252 22 6.64007e+06 364182 500653. 1732.36 1.43 0.277004 0.25319 21970 115934 -1 2776 20 1950 3092 226456 52958 4.73188 4.73188 -156.475 -4.73188 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.0517847 0.0470875 169 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.88 vpr 63.72 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30464 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65252 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 24.6 MiB 0.16 1016 14331 3274 9718 1339 63.7 MiB 0.20 0.00 4.34509 -136.539 -4.34509 4.34509 0.95 0.001127 0.00104873 0.0772296 0.0718904 30 2226 21 6.64007e+06 401856 526063. 1820.29 1.08 0.218324 0.19874 22546 126617 -1 1843 18 932 1491 89030 20798 3.12457 3.12457 -116.982 -3.12457 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0414945 0.0376505 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.63 vpr 63.13 MiB -1 -1 0.23 17992 1 0.03 -1 -1 30464 -1 -1 26 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64644 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 24.5 MiB 0.10 644 6718 1441 4611 666 63.1 MiB 0.09 0.00 3.45804 -101.577 -3.45804 3.45804 0.95 0.00092844 0.000863157 0.034586 0.0321283 32 1763 16 6.64007e+06 326508 554710. 1919.41 1.03 0.143283 0.129297 22834 132086 -1 1480 18 973 1547 91129 23071 2.79497 2.79497 -99.5918 -2.79497 0 0 701300. 2426.64 0.23 0.07 0.19 -1 -1 0.23 0.0341202 0.0307876 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.58 vpr 63.86 MiB -1 -1 0.27 18576 1 0.03 -1 -1 30492 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65388 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 25.4 MiB 0.39 1258 17023 5454 8906 2663 63.9 MiB 0.28 0.00 6.52766 -186.909 -6.52766 6.52766 0.95 0.00137984 0.00128523 0.119168 0.110934 32 3330 29 6.64007e+06 339066 554710. 1919.41 1.35 0.31077 0.283529 22834 132086 -1 2668 17 1875 2648 180960 42444 5.35614 5.35614 -174.025 -5.35614 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0489698 0.0445268 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.85 vpr 63.69 MiB -1 -1 0.24 18228 1 0.03 -1 -1 30588 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65216 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 24.6 MiB 0.16 911 6091 1101 4753 237 63.7 MiB 0.10 0.00 4.60401 -138.195 -4.60401 4.60401 0.94 0.00111314 0.0010361 0.0335723 0.0312514 26 2386 23 6.64007e+06 414414 477104. 1650.88 1.21 0.177372 0.160524 21682 110474 -1 2050 21 1533 2385 153230 37331 3.97222 3.97222 -132.703 -3.97222 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0461652 0.0417903 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.61 vpr 62.75 MiB -1 -1 0.22 17864 1 0.02 -1 -1 30628 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64252 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.9 MiB 0.09 820 12375 3515 6889 1971 62.7 MiB 0.13 0.00 3.58247 -102.606 -3.58247 3.58247 0.94 0.000802958 0.00074672 0.05475 0.0508786 26 1968 34 6.64007e+06 288834 477104. 1650.88 1.11 0.173374 0.156563 21682 110474 -1 1798 20 854 1502 101251 23911 2.92697 2.92697 -103.19 -2.92697 0 0 585099. 2024.56 0.19 0.07 0.16 -1 -1 0.19 0.0327652 0.0294442 100 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.95 vpr 63.75 MiB -1 -1 0.25 18284 1 0.03 -1 -1 30272 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65276 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.6 MiB 0.18 1051 10223 2392 7301 530 63.7 MiB 0.15 0.00 5.62381 -137.312 -5.62381 5.62381 0.95 0.00115866 0.00107731 0.0558517 0.0519724 32 2577 22 6.64007e+06 426972 554710. 1919.41 1.14 0.203839 0.185228 22834 132086 -1 2185 21 1344 2591 169321 39185 4.57848 4.57848 -135.103 -4.57848 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0483011 0.043782 139 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.73 vpr 63.14 MiB -1 -1 0.22 17808 1 0.03 -1 -1 30172 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64652 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.4 MiB 0.10 692 7404 1537 5210 657 63.1 MiB 0.10 0.00 3.45624 -104.082 -3.45624 3.45624 0.97 0.000871312 0.000809822 0.0388809 0.0360976 28 2092 24 6.64007e+06 251160 500653. 1732.36 1.14 0.152256 0.137315 21970 115934 -1 1734 21 1148 2039 130133 33777 2.91397 2.91397 -106.91 -2.91397 0 0 612192. 2118.31 0.20 0.08 0.17 -1 -1 0.20 0.0363258 0.0326887 104 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.78 vpr 63.02 MiB -1 -1 0.22 17928 1 0.03 -1 -1 30520 -1 -1 33 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64528 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 24.4 MiB 0.13 661 13271 3491 8020 1760 63.0 MiB 0.16 0.00 4.08278 -107.388 -4.08278 4.08278 0.95 0.000941269 0.000874478 0.0603897 0.0561102 26 2062 25 6.64007e+06 414414 477104. 1650.88 1.13 0.183011 0.165758 21682 110474 -1 1567 22 1081 1872 109401 27723 2.86877 2.86877 -102.939 -2.86877 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0400402 0.0360681 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.17 vpr 63.83 MiB -1 -1 0.27 18188 1 0.03 -1 -1 30492 -1 -1 26 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65364 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 24.9 MiB 0.33 1040 14871 4665 7654 2552 63.8 MiB 0.21 0.00 4.65946 -136.342 -4.65946 4.65946 0.96 0.00113076 0.00105171 0.0910726 0.0847433 32 2581 21 6.64007e+06 326508 554710. 1919.41 1.11 0.233337 0.212597 22834 132086 -1 2238 21 1576 2339 149020 35100 3.50742 3.50742 -122.825 -3.50742 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0473602 0.0428627 139 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.84 vpr 63.47 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30540 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64996 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 24.4 MiB 0.18 791 5938 1168 4585 185 63.5 MiB 0.10 0.00 4.46745 -132.755 -4.46745 4.46745 0.95 0.00115967 0.00107888 0.0382381 0.0355816 30 2002 22 6.64007e+06 301392 526063. 1820.29 1.09 0.185015 0.167474 22546 126617 -1 1677 20 1208 1952 115743 27908 3.55643 3.55643 -125.738 -3.55643 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0465356 0.0421829 130 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.97 vpr 63.66 MiB -1 -1 0.26 18364 1 0.03 -1 -1 30492 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65184 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 24.8 MiB 0.17 1028 16652 5035 9308 2309 63.7 MiB 0.22 0.00 4.7434 -142.045 -4.7434 4.7434 0.94 0.00114246 0.00106268 0.0945597 0.0879465 32 2479 20 6.64007e+06 351624 554710. 1919.41 1.10 0.235695 0.214804 22834 132086 -1 2217 18 1064 1859 131090 30209 3.69062 3.69062 -132.522 -3.69062 0 0 701300. 2426.64 0.22 0.08 0.20 -1 -1 0.22 0.0421518 0.0382404 133 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.29 vpr 62.95 MiB -1 -1 0.24 17920 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64460 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 24.3 MiB 0.28 745 12681 3505 7128 2048 62.9 MiB 0.16 0.00 4.79432 -130.688 -4.79432 4.79432 0.96 0.000924535 0.000859738 0.0699269 0.0650003 26 2490 38 6.64007e+06 213486 477104. 1650.88 1.50 0.211036 0.190956 21682 110474 -1 1857 19 1096 1509 114767 28959 3.45723 3.45723 -121.462 -3.45723 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0357511 0.0322374 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.02 vpr 63.61 MiB -1 -1 0.25 18424 1 0.03 -1 -1 30488 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65132 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 24.6 MiB 0.29 900 13966 4576 7232 2158 63.6 MiB 0.18 0.00 3.96736 -127.124 -3.96736 3.96736 0.97 0.00102359 0.000950553 0.0831534 0.0772594 32 2049 19 6.64007e+06 238602 554710. 1919.41 1.08 0.208835 0.18978 22834 132086 -1 1799 18 1150 1664 108623 25332 2.89843 2.89843 -114.015 -2.89843 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0374535 0.033854 113 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.17 vpr 63.59 MiB -1 -1 0.26 18388 1 0.03 -1 -1 30612 -1 -1 33 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65120 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 24.6 MiB 0.16 869 11759 2827 8114 818 63.6 MiB 0.15 0.00 3.56047 -98.9603 -3.56047 3.56047 0.94 0.00108406 0.00100953 0.0607133 0.0564598 26 2333 25 6.64007e+06 414414 477104. 1650.88 1.50 0.198634 0.179937 21682 110474 -1 1950 17 1079 1918 125642 33604 2.90497 2.90497 -100.496 -2.90497 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0373207 0.0337902 123 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.77 vpr 63.29 MiB -1 -1 0.24 18020 1 0.03 -1 -1 30488 -1 -1 35 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64812 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 24.6 MiB 0.14 923 12623 3556 7108 1959 63.3 MiB 0.15 0.00 4.42192 -107.107 -4.42192 4.42192 0.94 0.000938001 0.000872474 0.0573032 0.053317 26 2099 30 6.64007e+06 439530 477104. 1650.88 1.15 0.188341 0.170462 21682 110474 -1 1896 17 1042 1845 122963 28861 3.49542 3.49542 -104.515 -3.49542 0 0 585099. 2024.56 0.19 0.07 0.16 -1 -1 0.19 0.0328467 0.0296791 115 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 7.18 vpr 63.79 MiB -1 -1 0.24 18288 1 0.03 -1 -1 30460 -1 -1 18 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65320 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 24.9 MiB 0.17 685 9712 2247 6957 508 63.8 MiB 0.14 0.00 3.90078 -114.184 -3.90078 3.90078 0.95 0.00101352 0.000941729 0.0597424 0.0556125 26 2276 33 6.64007e+06 226044 477104. 1650.88 3.67 0.329818 0.296519 21682 110474 -1 1907 21 1444 2446 192830 54312 3.10417 3.10417 -115.683 -3.10417 0 0 585099. 2024.56 0.17 0.06 0.08 -1 -1 0.17 0.0182583 0.0163523 109 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.03 vpr 63.57 MiB -1 -1 0.25 18224 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65100 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 24.5 MiB 0.27 936 13105 4260 6168 2677 63.6 MiB 0.18 0.00 3.98936 -131.555 -3.98936 3.98936 0.96 0.00106892 0.000992927 0.0778022 0.0722803 32 2171 21 6.64007e+06 263718 554710. 1919.41 1.09 0.211666 0.192359 22834 132086 -1 1970 16 1196 1715 111482 26536 2.97297 2.97297 -118.139 -2.97297 0 0 701300. 2426.64 0.22 0.08 0.21 -1 -1 0.22 0.0357864 0.0324336 121 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.85 vpr 63.29 MiB -1 -1 0.24 17924 1 0.03 -1 -1 30444 -1 -1 32 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64804 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1072 16295 4636 9641 2018 63.3 MiB 0.21 0.00 4.60183 -132.105 -4.60183 4.60183 0.95 0.00101487 0.000944225 0.0793306 0.073841 32 2407 21 6.64007e+06 401856 554710. 1919.41 1.09 0.208127 0.189563 22834 132086 -1 2076 22 1368 2527 153769 37386 3.58143 3.58143 -120.547 -3.58143 0 0 701300. 2426.64 0.22 0.09 0.20 -1 -1 0.22 0.0440445 0.0398231 127 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.10 vpr 63.58 MiB -1 -1 0.25 18408 1 0.03 -1 -1 30628 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65108 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 24.7 MiB 0.33 1141 10618 2698 7154 766 63.6 MiB 0.18 0.00 5.38066 -169.108 -5.38066 5.38066 0.94 0.00115664 0.00107722 0.0661525 0.0616269 32 2886 22 6.64007e+06 301392 554710. 1919.41 1.16 0.21534 0.195941 22834 132086 -1 2501 22 1635 2371 157883 37333 4.32489 4.32489 -155.776 -4.32489 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0501054 0.0453774 146 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.11 vpr 63.79 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30340 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65320 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 24.7 MiB 0.21 1093 17423 4766 10394 2263 63.8 MiB 0.23 0.00 5.20872 -147.682 -5.20872 5.20872 0.98 0.00123604 0.00114983 0.0986667 0.0917385 32 2460 22 6.64007e+06 426972 554710. 1919.41 1.16 0.254451 0.231978 22834 132086 -1 2254 21 1325 2420 162475 38439 4.15568 4.15568 -140.115 -4.15568 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0502912 0.0456081 144 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.18 vpr 63.89 MiB -1 -1 0.25 18296 1 0.03 -1 -1 30564 -1 -1 37 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65424 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.8 MiB 0.17 1020 5976 1067 4592 317 63.9 MiB 0.10 0.00 4.48481 -139.253 -4.48481 4.48481 0.95 0.00123356 0.00114819 0.034758 0.0323524 26 3251 48 6.64007e+06 464646 477104. 1650.88 2.45 0.245955 0.222228 21682 110474 -1 2592 20 1597 2802 202207 48807 3.80083 3.80083 -140.84 -3.80083 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0492277 0.0446264 140 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.72 vpr 62.96 MiB -1 -1 0.23 18048 1 0.03 -1 -1 30200 -1 -1 19 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64476 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 24.1 MiB 0.17 720 9706 2873 5961 872 63.0 MiB 0.13 0.00 3.87875 -113.748 -3.87875 3.87875 0.94 0.000912469 0.000849003 0.0534119 0.0497458 26 1910 23 6.64007e+06 238602 477104. 1650.88 1.12 0.171422 0.155103 21682 110474 -1 1708 19 990 1675 114851 28129 2.88897 2.88897 -105.495 -2.88897 0 0 585099. 2024.56 0.19 0.07 0.16 -1 -1 0.19 0.0349251 0.0314945 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.99 vpr 63.71 MiB -1 -1 0.26 18376 1 0.03 -1 -1 30552 -1 -1 23 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65244 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 24.6 MiB 0.21 943 11431 3023 6401 2007 63.7 MiB 0.17 0.00 4.78844 -139.402 -4.78844 4.78844 0.95 0.00119236 0.00110901 0.0762108 0.0709072 32 2190 24 6.64007e+06 288834 554710. 1919.41 1.14 0.231114 0.210362 22834 132086 -1 1949 20 1588 2371 170163 39583 3.71063 3.71063 -131.605 -3.71063 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0482266 0.0437838 138 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 7.19 vpr 63.61 MiB -1 -1 0.25 18292 1 0.03 -1 -1 30492 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65132 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 24.7 MiB 0.26 1173 16170 4393 9836 1941 63.6 MiB 0.23 0.00 5.44166 -158.46 -5.44166 5.44166 0.94 0.00111986 0.0010422 0.0932584 0.0867706 28 2713 33 6.64007e+06 326508 500653. 1732.36 3.26 0.405165 0.365944 21970 115934 -1 2293 20 1456 2250 155085 36091 4.29689 4.29689 -145.813 -4.29689 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0451709 0.0409556 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.02 vpr 63.62 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30416 -1 -1 30 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65152 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 24.7 MiB 0.32 1216 15003 5067 8222 1714 63.6 MiB 0.20 0.00 5.37715 -156.166 -5.37715 5.37715 0.94 0.00110405 0.00102692 0.0821648 0.0764323 30 2449 21 6.64007e+06 376740 526063. 1820.29 1.12 0.221746 0.201907 22546 126617 -1 2039 15 884 1358 78962 18569 4.17788 4.17788 -142.354 -4.17788 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.035505 0.0322998 148 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.01 vpr 63.61 MiB -1 -1 0.26 18360 1 0.03 -1 -1 30488 -1 -1 33 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65140 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 24.5 MiB 0.28 895 9815 2159 6479 1177 63.6 MiB 0.14 0.00 4.45681 -130.071 -4.45681 4.45681 0.95 0.00117863 0.0010958 0.0560923 0.0521438 32 2173 20 6.64007e+06 414414 554710. 1919.41 1.10 0.201449 0.182776 22834 132086 -1 1860 20 1221 2039 117313 29198 3.30083 3.30083 -119.822 -3.30083 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0492326 0.044739 135 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.04 vpr 63.71 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30372 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65236 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 24.6 MiB 0.18 1069 14407 4171 8795 1441 63.7 MiB 0.21 0.00 4.99084 -144.739 -4.99084 4.99084 0.95 0.00117419 0.00109177 0.0953385 0.0886591 32 2704 21 6.64007e+06 263718 554710. 1919.41 1.15 0.242409 0.220909 22834 132086 -1 2329 20 1487 2730 186538 42817 3.97703 3.97703 -142.726 -3.97703 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0468505 0.042466 134 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.85 vpr 63.59 MiB -1 -1 0.26 18488 1 0.03 -1 -1 30380 -1 -1 31 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65120 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 24.4 MiB 0.19 991 14168 3722 8736 1710 63.6 MiB 0.19 0.00 4.90164 -138.394 -4.90164 4.90164 0.99 0.00117456 0.00109188 0.083607 0.0777323 26 2394 18 6.64007e+06 389298 477104. 1650.88 1.06 0.226382 0.206018 21682 110474 -1 2037 18 1159 1904 119739 28874 3.62843 3.62843 -128.508 -3.62843 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.043149 0.0390645 132 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 6.19 vpr 63.04 MiB -1 -1 0.23 17744 1 0.02 -1 -1 30620 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64552 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.3 MiB 0.09 698 12416 3955 6725 1736 63.0 MiB 0.15 0.00 3.88758 -112.734 -3.88758 3.88758 0.95 0.000863752 0.000803206 0.0656573 0.0610613 26 2075 47 6.64007e+06 188370 477104. 1650.88 2.67 0.30942 0.278243 21682 110474 -1 1634 23 993 1484 113932 27872 3.05817 3.05817 -109.543 -3.05817 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0388788 0.0350016 96 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.03 vpr 63.66 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30372 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65192 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 24.6 MiB 0.27 964 13455 3168 8058 2229 63.7 MiB 0.18 0.00 4.65236 -138.008 -4.65236 4.65236 0.94 0.00119487 0.00111196 0.0764605 0.0711249 32 2216 21 6.64007e+06 401856 554710. 1919.41 1.13 0.225112 0.204882 22834 132086 -1 1886 18 1199 2039 117453 28949 3.70183 3.70183 -130.275 -3.70183 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0434176 0.0393451 132 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.07 vpr 63.71 MiB -1 -1 0.25 18184 1 0.03 -1 -1 30400 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65240 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1060 10103 2308 6560 1235 63.7 MiB 0.17 0.00 4.84241 -152.382 -4.84241 4.84241 0.95 0.00126476 0.00117645 0.0705485 0.06565 32 2655 24 6.64007e+06 276276 554710. 1919.41 1.19 0.234342 0.213266 22834 132086 -1 2359 21 1884 3080 201568 47848 4.03623 4.03623 -144.553 -4.03623 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0526199 0.0477378 148 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.37 vpr 63.00 MiB -1 -1 0.23 18148 1 0.03 -1 -1 30512 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64508 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 24.3 MiB 0.32 933 13992 4098 8142 1752 63.0 MiB 0.17 0.00 4.31784 -124.298 -4.31784 4.31784 0.95 0.000914323 0.000849772 0.0728241 0.0676688 26 2389 20 6.64007e+06 251160 477104. 1650.88 1.56 0.189088 0.171438 21682 110474 -1 1989 13 920 1245 87542 20428 3.30403 3.30403 -118.199 -3.30403 0 0 585099. 2024.56 0.19 0.06 0.16 -1 -1 0.19 0.0262464 0.0238004 109 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.65 vpr 62.80 MiB -1 -1 0.22 17848 1 0.02 -1 -1 30660 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64308 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.0 MiB 0.10 781 9417 2297 6451 669 62.8 MiB 0.12 0.00 3.81035 -109.522 -3.81035 3.81035 0.94 0.000866286 0.000801408 0.0467089 0.0434348 32 1818 23 6.64007e+06 263718 554710. 1919.41 1.06 0.15849 0.143312 22834 132086 -1 1618 23 1044 1709 111975 26483 2.80777 2.80777 -103.666 -2.80777 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0390738 0.0351062 106 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 8.36 vpr 63.80 MiB -1 -1 0.24 18176 1 0.03 -1 -1 30484 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65336 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 24.8 MiB 0.30 894 10542 2833 7069 640 63.8 MiB 0.16 0.00 5.11544 -156.533 -5.11544 5.11544 0.94 0.00117051 0.00109186 0.0630857 0.0585703 26 3162 47 6.64007e+06 326508 477104. 1650.88 4.50 0.40216 0.362431 21682 110474 -1 2322 21 1747 2289 145358 37012 4.39209 4.39209 -154.77 -4.39209 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0480187 0.0435359 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 6.31 vpr 63.85 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30356 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65384 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.9 MiB 0.32 1216 13953 3630 8615 1708 63.9 MiB 0.19 0.00 5.10413 -156.46 -5.10413 5.10413 0.95 0.00114471 0.00106409 0.0794351 0.0738591 26 3259 40 6.64007e+06 364182 477104. 1650.88 2.36 0.259078 0.234975 21682 110474 -1 2713 21 1571 2456 198956 43706 4.73089 4.73089 -157.703 -4.73089 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0476786 0.0431562 155 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.19 vpr 63.87 MiB -1 -1 0.25 18180 1 0.03 -1 -1 30252 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65400 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.0 MiB 0.12 1246 17036 4529 10969 1538 63.9 MiB 0.23 0.00 5.4761 -148.295 -5.4761 5.4761 0.94 0.00119051 0.00110927 0.0907505 0.0845612 26 3121 25 6.64007e+06 452088 477104. 1650.88 1.45 0.248463 0.226762 21682 110474 -1 2659 22 1548 3047 215337 49841 4.57469 4.57469 -150.241 -4.57469 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0516499 0.0468719 153 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.73 vpr 63.55 MiB -1 -1 0.25 18316 1 0.04 -1 -1 30556 -1 -1 32 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65072 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 24.6 MiB 0.17 874 9892 2506 6506 880 63.5 MiB 0.13 0.00 3.51924 -103.944 -3.51924 3.51924 0.95 0.00103191 0.000959336 0.0506661 0.0470949 30 1853 19 6.64007e+06 401856 526063. 1820.29 1.03 0.175287 0.158852 22546 126617 -1 1630 22 1039 1871 91319 23224 2.69577 2.69577 -97.3164 -2.69577 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0440459 0.039734 121 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.53 vpr 63.07 MiB -1 -1 0.24 18004 1 0.03 -1 -1 30504 -1 -1 21 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64584 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.3 MiB 0.10 565 12120 3265 7503 1352 63.1 MiB 0.13 0.00 3.49724 -93.0073 -3.49724 3.49724 0.94 0.00085716 0.000797045 0.0628229 0.0583928 28 1556 21 6.64007e+06 263718 500653. 1732.36 0.97 0.170431 0.154434 21970 115934 -1 1384 21 1046 1581 105059 25765 2.79997 2.79997 -92.1655 -2.79997 0 0 612192. 2118.31 0.20 0.07 0.16 -1 -1 0.20 0.0358635 0.0322494 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.38 vpr 64.25 MiB -1 -1 0.29 18520 1 0.03 -1 -1 30420 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65788 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 25.4 MiB 0.34 1324 16572 5072 8808 2692 64.2 MiB 0.26 0.00 4.42635 -141.521 -4.42635 4.42635 0.94 0.00131793 0.00122715 0.113953 0.106066 32 3329 19 6.64007e+06 326508 554710. 1919.41 1.20 0.278101 0.254171 22834 132086 -1 2707 19 1759 2980 197910 44680 3.90803 3.90803 -136.757 -3.90803 0 0 701300. 2426.64 0.23 0.11 0.20 -1 -1 0.23 0.0517513 0.0470279 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.22 vpr 63.79 MiB -1 -1 0.26 18392 1 0.03 -1 -1 30392 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 25.0 MiB 0.42 1050 12371 3182 7852 1337 63.8 MiB 0.18 0.00 5.43386 -156.366 -5.43386 5.43386 0.95 0.00115903 0.00107815 0.0793614 0.0738471 32 2470 22 6.64007e+06 288834 554710. 1919.41 1.12 0.22695 0.206542 22834 132086 -1 2256 20 1337 2221 163512 37358 4.42649 4.42649 -148.724 -4.42649 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0466098 0.042256 152 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.01 vpr 63.54 MiB -1 -1 0.24 18260 1 0.03 -1 -1 30444 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65060 32 32 331 280 1 174 84 17 17 289 -1 unnamed_device 24.5 MiB 0.35 941 14175 4029 8632 1514 63.5 MiB 0.19 0.00 4.2933 -133.018 -4.2933 4.2933 0.95 0.00105361 0.000978853 0.0844926 0.0784868 32 2177 20 6.64007e+06 251160 554710. 1919.41 1.07 0.214556 0.19507 22834 132086 -1 1958 18 1145 1647 119427 27476 3.46343 3.46343 -132.515 -3.46343 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0389138 0.0352234 130 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.68 vpr 63.82 MiB -1 -1 0.26 18468 1 0.03 -1 -1 30644 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65356 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 24.8 MiB 0.08 1025 10744 3084 7154 506 63.8 MiB 0.15 0.00 5.21217 -134.409 -5.21217 5.21217 0.96 0.00109292 0.00101642 0.0582393 0.0541198 30 2180 17 6.64007e+06 376740 526063. 1820.29 1.05 0.186121 0.168844 22546 126617 -1 1876 18 867 1457 85014 20240 3.73062 3.73062 -117.48 -3.73062 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0394755 0.0357824 126 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.02 vpr 63.98 MiB -1 -1 0.27 18280 1 0.03 -1 -1 30648 -1 -1 34 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65520 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 24.9 MiB 0.19 1033 6757 1363 4872 522 64.0 MiB 0.12 0.00 5.06104 -138.99 -5.06104 5.06104 0.96 0.00120998 0.00112624 0.0405558 0.0378112 26 2513 18 6.64007e+06 426972 477104. 1650.88 1.26 0.186525 0.169113 21682 110474 -1 2282 19 1558 2529 146713 37340 3.83882 3.83882 -130.836 -3.83882 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0465672 0.0422762 145 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.89 vpr 63.80 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30552 -1 -1 31 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65336 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 24.8 MiB 0.19 1000 10173 2480 6565 1128 63.8 MiB 0.14 0.00 3.68089 -112.079 -3.68089 3.68089 0.96 0.00105983 0.000985872 0.0541994 0.0504153 32 2188 19 6.64007e+06 389298 554710. 1919.41 1.08 0.182927 0.165918 22834 132086 -1 1965 18 989 1813 116353 26867 2.81197 2.81197 -103.558 -2.81197 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0392034 0.0355371 124 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.18 vpr 63.79 MiB -1 -1 0.24 18356 1 0.03 -1 -1 30328 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65320 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.8 MiB 0.38 1181 8207 1889 5862 456 63.8 MiB 0.15 0.00 5.21333 -162.921 -5.21333 5.21333 0.95 0.00115257 0.00107212 0.0510994 0.0476025 32 2904 23 6.64007e+06 313950 554710. 1919.41 1.17 0.201162 0.182647 22834 132086 -1 2554 19 1731 2671 198344 44376 4.08388 4.08388 -146.031 -4.08388 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0450281 0.040856 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.42 vpr 63.87 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30360 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65404 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 24.9 MiB 0.20 1091 17268 5141 9536 2591 63.9 MiB 0.24 0.00 4.75546 -148.32 -4.75546 4.75546 0.96 0.0012361 0.0011496 0.0953731 0.0887157 26 2723 26 6.64007e+06 452088 477104. 1650.88 1.54 0.261063 0.237806 21682 110474 -1 2325 19 1319 2088 138237 33077 3.49323 3.49323 -135.065 -3.49323 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0473881 0.0430328 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.61 vpr 62.93 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30412 -1 -1 17 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64436 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 24.2 MiB 0.10 588 12030 3358 7039 1633 62.9 MiB 0.14 0.00 3.76255 -108.245 -3.76255 3.76255 0.95 0.000905398 0.000842213 0.0683327 0.0635894 30 1388 22 6.64007e+06 213486 526063. 1820.29 0.99 0.182934 0.165951 22546 126617 -1 1208 20 863 1298 83758 19912 2.63137 2.63137 -95.8408 -2.63137 0 0 666494. 2306.21 0.22 0.07 0.20 -1 -1 0.22 0.036428 0.0328364 91 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.87 vpr 63.45 MiB -1 -1 0.23 18444 1 0.03 -1 -1 30408 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64976 32 32 310 266 1 176 85 17 17 289 -1 unnamed_device 24.5 MiB 0.24 778 6037 1272 4427 338 63.5 MiB 0.09 0.00 4.48879 -126.842 -4.48879 4.48879 0.95 0.000996575 0.000925468 0.0350581 0.0325738 32 2078 31 6.64007e+06 263718 554710. 1919.41 1.12 0.177447 0.160118 22834 132086 -1 1780 20 1083 1444 109077 27257 3.38223 3.38223 -123.704 -3.38223 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.039891 0.0359835 118 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.87 vpr 63.86 MiB -1 -1 0.24 18256 1 0.03 -1 -1 30516 -1 -1 37 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65392 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 24.8 MiB 0.13 1008 6132 1183 4581 368 63.9 MiB 0.10 0.00 4.78944 -127.311 -4.78944 4.78944 0.97 0.00108308 0.00100781 0.0314995 0.0293232 26 2537 26 6.64007e+06 464646 477104. 1650.88 1.23 0.175726 0.158825 21682 110474 -1 2172 20 1431 2570 160861 38902 3.87402 3.87402 -125.793 -3.87402 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0430928 0.03899 129 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.85 vpr 63.24 MiB -1 -1 0.24 18040 1 0.03 -1 -1 30352 -1 -1 22 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64760 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 24.6 MiB 0.29 764 14303 4579 7529 2195 63.2 MiB 0.17 0.00 4.38281 -116.371 -4.38281 4.38281 0.95 0.000884508 0.00082264 0.0728001 0.0677191 28 2140 26 6.64007e+06 276276 500653. 1732.36 1.07 0.191153 0.173469 21970 115934 -1 1690 20 1132 1494 96316 23457 3.21483 3.21483 -106.723 -3.21483 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0354292 0.0318732 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.79 vpr 63.01 MiB -1 -1 0.23 17936 1 0.03 -1 -1 30144 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64520 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 24.2 MiB 0.17 868 10406 2691 6847 868 63.0 MiB 0.14 0.00 3.9428 -121.707 -3.9428 3.9428 0.94 0.000934542 0.00086877 0.0579475 0.0538527 32 1853 19 6.64007e+06 213486 554710. 1919.41 1.05 0.171505 0.155481 22834 132086 -1 1693 20 1156 2025 130447 30591 2.79377 2.79377 -109.178 -2.79377 0 0 701300. 2426.64 0.26 0.10 0.19 -1 -1 0.26 0.046088 0.0415065 108 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.92 vpr 63.76 MiB -1 -1 0.25 18396 1 0.03 -1 -1 30300 -1 -1 36 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65288 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 24.6 MiB 0.17 875 8079 1601 6137 341 63.8 MiB 0.13 0.00 4.17918 -122.781 -4.17918 4.17918 0.94 0.00118721 0.00110417 0.0453173 0.0421326 28 2450 21 6.64007e+06 452088 500653. 1732.36 1.19 0.193846 0.17569 21970 115934 -1 1898 22 1349 2249 126253 34132 3.42297 3.42297 -122.075 -3.42297 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0518418 0.0470256 136 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.67 vpr 63.14 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30472 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64656 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 24.5 MiB 0.23 883 11423 3367 6862 1194 63.1 MiB 0.14 0.00 4.01573 -121.888 -4.01573 4.01573 0.95 0.000891816 0.000828223 0.0591698 0.0549486 26 2013 20 6.64007e+06 251160 477104. 1650.88 0.97 0.169486 0.153344 21682 110474 -1 1755 19 1025 1442 94199 22978 3.36323 3.36323 -118.114 -3.36323 0 0 585099. 2024.56 0.19 0.07 0.16 -1 -1 0.19 0.0343491 0.0309318 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.98 vpr 63.68 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30144 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65204 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 24.6 MiB 0.18 851 8418 1678 5980 760 63.7 MiB 0.11 0.00 3.82753 -117.666 -3.82753 3.82753 0.95 0.00112724 0.00104812 0.0463773 0.0430928 28 2485 32 6.64007e+06 401856 500653. 1732.36 1.27 0.208032 0.188016 21970 115934 -1 1989 18 1167 1978 122394 31234 2.79677 2.79677 -109.374 -2.79677 0 0 612192. 2118.31 0.20 0.08 0.17 -1 -1 0.20 0.0411738 0.0372802 127 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.06 vpr 63.77 MiB -1 -1 0.27 18412 1 0.03 -1 -1 30464 -1 -1 32 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65300 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.7 MiB 0.29 974 12839 3425 8126 1288 63.8 MiB 0.18 0.00 4.34696 -135.951 -4.34696 4.34696 0.94 0.00122633 0.00114053 0.0762478 0.0709003 32 2223 18 6.64007e+06 401856 554710. 1919.41 1.09 0.224716 0.204649 22834 132086 -1 1951 22 1388 1961 126318 30814 3.33903 3.33903 -130.632 -3.33903 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0527117 0.0477026 138 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.81 vpr 63.27 MiB -1 -1 0.23 18248 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64792 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 24.4 MiB 0.19 712 8656 2009 6156 491 63.3 MiB 0.12 0.00 3.3851 -102.924 -3.3851 3.3851 0.95 0.000980818 0.000910939 0.0514384 0.0477469 28 1928 22 6.64007e+06 213486 500653. 1732.36 1.08 0.175283 0.158362 21970 115934 -1 1641 21 1060 1692 116608 29363 2.90897 2.90897 -105.06 -2.90897 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0519182 0.0464766 104 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.97 vpr 63.23 MiB -1 -1 0.24 18088 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64752 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 24.5 MiB 0.28 948 9385 2467 6027 891 63.2 MiB 0.14 0.00 4.44818 -138.832 -4.44818 4.44818 0.96 0.00096798 0.000900112 0.0531323 0.0494213 32 2257 20 6.64007e+06 263718 554710. 1919.41 1.10 0.175137 0.158378 22834 132086 -1 2054 18 1072 1551 116626 26209 3.41203 3.41203 -129.043 -3.41203 0 0 701300. 2426.64 0.22 0.08 0.21 -1 -1 0.22 0.0361689 0.0327552 117 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.00 vpr 63.77 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30300 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65296 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 24.7 MiB 0.29 1058 7767 1828 5291 648 63.8 MiB 0.12 0.00 4.73583 -140.794 -4.73583 4.73583 0.97 0.00105736 0.000984053 0.0460408 0.0428663 32 2499 22 6.64007e+06 288834 554710. 1919.41 1.09 0.180444 0.163601 22834 132086 -1 2147 19 1353 1810 122318 30419 3.85302 3.85302 -133.125 -3.85302 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0408707 0.0370084 130 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.90 vpr 63.35 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30296 -1 -1 29 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64872 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 24.3 MiB 0.20 961 12753 3692 7785 1276 63.4 MiB 0.17 0.00 4.75755 -125.045 -4.75755 4.75755 0.97 0.00104716 0.000974384 0.0697815 0.0649264 32 1995 21 6.64007e+06 364182 554710. 1919.41 1.04 0.201005 0.182738 22834 132086 -1 1819 18 760 1283 72609 18042 3.20063 3.20063 -107.15 -3.20063 0 0 701300. 2426.64 0.24 0.07 0.19 -1 -1 0.24 0.0391736 0.0355146 122 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 7.48 vpr 63.80 MiB -1 -1 0.24 18544 1 0.03 -1 -1 30616 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65336 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 24.8 MiB 0.35 846 9643 2135 6651 857 63.8 MiB 0.07 0.00 5.52409 -167.953 -5.52409 5.52409 0.66 0.000458587 0.000421501 0.0248742 0.0228927 36 2243 21 6.64007e+06 301392 612192. 2118.31 3.80 0.338609 0.303911 23410 145293 -1 1815 20 1392 2078 122107 32589 4.21569 4.21569 -150.515 -4.21569 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.0500357 0.0454246 154 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.54 vpr 62.86 MiB -1 -1 0.23 17832 1 0.03 -1 -1 30288 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64372 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.2 MiB 0.10 599 7956 1801 5879 276 62.9 MiB 0.10 0.00 3.65226 -97.6941 -3.65226 3.65226 0.95 0.000815176 0.000758046 0.0396658 0.0368961 32 1649 17 6.64007e+06 226044 554710. 1919.41 1.01 0.136742 0.123434 22834 132086 -1 1467 19 858 1408 99214 24442 2.69957 2.69957 -95.5233 -2.69957 0 0 701300. 2426.64 0.23 0.07 0.20 -1 -1 0.23 0.0317026 0.0285154 96 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 8.17 vpr 63.85 MiB -1 -1 0.28 18292 1 0.03 -1 -1 30464 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65384 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 24.7 MiB 0.19 954 8873 1826 6622 425 63.9 MiB 0.14 0.00 4.24713 -140.193 -4.24713 4.24713 0.95 0.00127286 0.00118395 0.0536826 0.0498853 26 2721 43 6.64007e+06 426972 477104. 1650.88 4.32 0.434435 0.391048 21682 110474 -1 2304 28 2064 3182 260753 69243 4.01623 4.01623 -141.925 -4.01623 0 0 585099. 2024.56 0.20 0.15 0.17 -1 -1 0.20 0.0694115 0.0627327 145 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.11 vpr 63.71 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30236 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65236 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.8 MiB 0.30 874 12856 4533 6666 1657 63.7 MiB 0.18 0.00 3.54047 -123.335 -3.54047 3.54047 0.95 0.00115649 0.00107362 0.0884158 0.0821304 32 1898 19 6.64007e+06 213486 554710. 1919.41 1.09 0.230878 0.210174 22834 132086 -1 1630 20 1334 1951 111162 27554 2.88797 2.88797 -119.049 -2.88797 0 0 701300. 2426.64 0.24 0.09 0.19 -1 -1 0.24 0.0467418 0.0423139 114 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.75 vpr 63.60 MiB -1 -1 0.24 18308 1 0.03 -1 -1 30432 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65128 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 24.5 MiB 0.19 1033 11265 2868 7471 926 63.6 MiB 0.16 0.00 4.43584 -135.56 -4.43584 4.43584 0.95 0.00116634 0.0010732 0.0632812 0.0586573 28 2215 14 6.64007e+06 401856 500653. 1732.36 1.06 0.195097 0.177251 21970 115934 -1 2094 16 920 1472 95934 23069 3.34183 3.34183 -120.404 -3.34183 0 0 612192. 2118.31 0.20 0.08 0.16 -1 -1 0.20 0.0384843 0.0349216 131 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 11.73 vpr 63.69 MiB -1 -1 0.26 18668 1 0.03 -1 -1 30404 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65220 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 25.0 MiB 0.39 1323 13963 4525 7204 2234 63.7 MiB 0.24 0.01 6.49387 -193.63 -6.49387 6.49387 0.95 0.00130424 0.00121461 0.093528 0.0871612 28 3964 41 6.64007e+06 339066 500653. 1732.36 7.61 0.459865 0.416775 21970 115934 -1 3038 21 1902 2745 258822 56623 5.46414 5.46414 -182.916 -5.46414 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0547745 0.0498427 170 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.64 vpr 62.79 MiB -1 -1 0.23 18092 1 0.02 -1 -1 30376 -1 -1 18 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64300 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 24.1 MiB 0.21 724 10744 2740 6987 1017 62.8 MiB 0.11 0.00 3.31307 -103.05 -3.31307 3.31307 0.94 0.000762278 0.000707484 0.0496873 0.0461078 32 1587 18 6.64007e+06 226044 554710. 1919.41 0.99 0.14052 0.126929 22834 132086 -1 1457 18 771 987 67847 16160 2.41617 2.41617 -95.8745 -2.41617 0 0 701300. 2426.64 0.23 0.06 0.19 -1 -1 0.23 0.0278125 0.0249611 87 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.49 vpr 62.95 MiB -1 -1 0.14 17916 1 0.03 -1 -1 30456 -1 -1 16 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64460 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 24.4 MiB 0.09 653 10370 2942 6125 1303 62.9 MiB 0.13 0.00 4.12598 -117.274 -4.12598 4.12598 0.94 0.00096997 0.000903338 0.0625264 0.0581562 26 1712 22 6.64007e+06 200928 477104. 1650.88 1.02 0.183474 0.166331 21682 110474 -1 1457 20 884 1392 108171 25263 3.04317 3.04317 -108.758 -3.04317 0 0 585099. 2024.56 0.20 0.08 0.16 -1 -1 0.20 0.038515 0.0347076 92 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.73 vpr 63.26 MiB -1 -1 0.21 18176 1 0.03 -1 -1 30224 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64776 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 24.6 MiB 0.11 882 10687 2740 7287 660 63.3 MiB 0.14 0.00 3.50309 -113.66 -3.50309 3.50309 0.94 0.000984638 0.000914911 0.0592312 0.0550547 32 2035 22 6.64007e+06 263718 554710. 1919.41 1.08 0.183641 0.166453 22834 132086 -1 1827 19 1134 2066 138590 31557 2.62237 2.62237 -106.536 -2.62237 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0379259 0.0342495 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.92 vpr 62.91 MiB -1 -1 0.25 18108 1 0.02 -1 -1 30296 -1 -1 27 25 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64420 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.2 MiB 0.09 444 9966 3251 4492 2223 62.9 MiB 0.09 0.00 3.40927 -77.6354 -3.40927 3.40927 0.97 0.000739387 0.000686943 0.0422753 0.039209 28 1578 28 6.64007e+06 339066 500653. 1732.36 1.35 0.142744 0.128439 21970 115934 -1 1232 18 745 1234 85748 24684 2.96837 2.96837 -78.4195 -2.96837 0 0 612192. 2118.31 0.20 0.06 0.16 -1 -1 0.20 0.0271537 0.0244288 89 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.03 vpr 63.84 MiB -1 -1 0.26 18276 1 0.03 -1 -1 30404 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65376 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 24.8 MiB 0.22 946 11431 2748 6950 1733 63.8 MiB 0.17 0.00 4.37233 -131.494 -4.37233 4.37233 0.95 0.00118877 0.00110549 0.0763408 0.0709884 32 2571 19 6.64007e+06 263718 554710. 1919.41 1.14 0.22206 0.202082 22834 132086 -1 2070 18 1238 2238 126087 31153 3.59763 3.59763 -126.153 -3.59763 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0437288 0.0396493 136 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.07 vpr 64.03 MiB -1 -1 0.27 18244 1 0.03 -1 -1 30404 -1 -1 35 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65564 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 25.1 MiB 0.21 961 9998 2423 6940 635 64.0 MiB 0.15 0.00 4.49598 -142.588 -4.49598 4.49598 0.95 0.0012629 0.00117406 0.0599058 0.055705 32 2233 19 6.64007e+06 439530 554710. 1919.41 1.17 0.218602 0.198731 22834 132086 -1 1958 18 1273 1963 118464 28790 3.31083 3.31083 -124.01 -3.31083 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0465264 0.0421631 143 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.19 vpr 64.01 MiB -1 -1 0.24 18468 1 0.03 -1 -1 30096 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65544 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 25.0 MiB 0.42 1143 17347 5477 9563 2307 64.0 MiB 0.24 0.00 5.20258 -155.488 -5.20258 5.20258 0.94 0.00115019 0.00106927 0.097138 0.0902219 28 2738 22 6.65987e+06 380340 500653. 1732.36 1.20 0.242419 0.220872 21970 115934 -1 2339 21 1652 2517 165640 39306 4.18677 4.18677 -145.778 -4.18677 0 0 612192. 2118.31 0.21 0.10 0.16 -1 -1 0.21 0.0486059 0.0440907 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.00 vpr 63.46 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30408 -1 -1 24 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64980 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 24.6 MiB 0.30 826 5567 1093 3716 758 63.5 MiB 0.09 0.00 4.85795 -137.996 -4.85795 4.85795 0.94 0.00116248 0.00108216 0.037535 0.0349506 32 2440 22 6.65987e+06 304272 554710. 1919.41 1.11 0.18462 0.167205 22834 132086 -1 2030 22 1880 2826 184043 49833 4.21103 4.21103 -138.112 -4.21103 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0506155 0.0458053 140 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.97 vpr 63.37 MiB -1 -1 0.24 18180 1 0.03 -1 -1 30324 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64888 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 24.3 MiB 0.22 1079 15639 5051 8379 2209 63.4 MiB 0.20 0.00 4.11181 -120.963 -4.11181 4.11181 0.95 0.000999726 0.000928364 0.0843418 0.0783757 32 2433 29 6.65987e+06 291594 554710. 1919.41 1.11 0.223161 0.202817 22834 132086 -1 2097 21 1291 1844 124538 30280 3.47931 3.47931 -118.979 -3.47931 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0422669 0.0381986 126 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.92 vpr 63.47 MiB -1 -1 0.25 18276 1 0.03 -1 -1 30396 -1 -1 27 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64992 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 24.4 MiB 0.16 937 15298 4951 7764 2583 63.5 MiB 0.19 0.00 4.29337 -115.569 -4.29337 4.29337 0.96 0.00101319 0.000943221 0.083122 0.0773079 32 2306 23 6.65987e+06 342306 554710. 1919.41 1.12 0.215652 0.196361 22834 132086 -1 1983 23 1444 2676 193674 46525 3.52565 3.52565 -112.747 -3.52565 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0461819 0.0417728 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 5.01 vpr 63.25 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30520 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64772 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 24.1 MiB 0.17 1058 13911 3755 8078 2078 63.3 MiB 0.21 0.00 4.32255 -126.417 -4.32255 4.32255 0.94 0.00110987 0.00103242 0.0836528 0.0778403 32 2720 24 6.65987e+06 291594 554710. 1919.41 1.16 0.228562 0.20811 22834 132086 -1 2241 25 1676 3278 251102 57412 3.62331 3.62331 -123.419 -3.62331 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0537261 0.0485718 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.11 vpr 63.74 MiB -1 -1 0.26 18272 1 0.03 -1 -1 30480 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65268 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 24.9 MiB 0.26 858 7201 1481 5496 224 63.7 MiB 0.13 0.00 3.30984 -111.675 -3.30984 3.30984 0.97 0.00118671 0.0011048 0.0430321 0.0400399 28 2366 29 6.65987e+06 418374 500653. 1732.36 1.24 0.209926 0.189988 21970 115934 -1 2004 17 1159 1875 109945 29948 2.96611 2.96611 -114.692 -2.96611 0 0 612192. 2118.31 0.21 0.08 0.16 -1 -1 0.21 0.0419393 0.038113 141 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.74 vpr 62.63 MiB -1 -1 0.22 17900 1 0.02 -1 -1 30756 -1 -1 18 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64132 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 24.0 MiB 0.14 601 11976 3191 7496 1289 62.6 MiB 0.14 0.00 3.61795 -96.0414 -3.61795 3.61795 0.94 0.000881073 0.000820343 0.066197 0.0616038 28 1556 19 6.65987e+06 228204 500653. 1732.36 0.98 0.171603 0.155725 21970 115934 -1 1377 18 750 1288 91539 21521 2.77871 2.77871 -93.1213 -2.77871 0 0 612192. 2118.31 0.20 0.07 0.16 -1 -1 0.20 0.0332444 0.0300679 94 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.91 vpr 63.33 MiB -1 -1 0.23 17884 1 0.03 -1 -1 30168 -1 -1 31 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64848 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 24.6 MiB 0.16 811 9892 2186 7284 422 63.3 MiB 0.12 0.00 3.36433 -96.8901 -3.36433 3.36433 0.98 0.000945666 0.000878271 0.0467059 0.0433896 28 2303 21 6.65987e+06 393018 500653. 1732.36 1.22 0.165725 0.149918 21970 115934 -1 1857 18 992 1720 120803 29750 2.85505 2.85505 -95.6033 -2.85505 0 0 612192. 2118.31 0.20 0.08 0.18 -1 -1 0.20 0.035855 0.0324858 115 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.71 vpr 63.46 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30212 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64984 31 32 317 271 1 169 82 17 17 289 -1 unnamed_device 24.4 MiB 0.22 927 8804 2219 5962 623 63.5 MiB 0.12 0.00 3.4209 -115.766 -3.4209 3.4209 0.94 0.00101143 0.000939345 0.0528537 0.0491164 30 1903 20 6.65987e+06 240882 526063. 1820.29 1.01 0.177171 0.16051 22546 126617 -1 1649 20 872 1283 72368 17852 2.72911 2.72911 -107.338 -2.72911 0 0 666494. 2306.21 0.21 0.07 0.18 -1 -1 0.21 0.039987 0.0361139 112 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.86 vpr 63.23 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30144 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64748 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 24.3 MiB 0.25 719 10056 2390 7132 534 63.2 MiB 0.14 0.00 3.74029 -120.95 -3.74029 3.74029 0.95 0.000992629 0.000922706 0.0597645 0.0555713 28 2061 20 6.65987e+06 215526 500653. 1732.36 1.09 0.182472 0.165494 21970 115934 -1 1730 18 1101 1710 107859 28525 2.86151 2.86151 -115.44 -2.86151 0 0 612192. 2118.31 0.20 0.08 0.17 -1 -1 0.20 0.0368026 0.0332882 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.76 vpr 63.15 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30628 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64668 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 24.3 MiB 0.24 575 5994 1238 4012 744 63.2 MiB 0.09 0.00 4.00989 -106.137 -4.00989 4.00989 0.94 0.00097614 0.000906708 0.0372472 0.0346489 32 1515 24 6.65987e+06 215526 554710. 1919.41 1.04 0.163625 0.147619 22834 132086 -1 1336 19 754 1151 68447 18588 2.84371 2.84371 -99.9706 -2.84371 0 0 701300. 2426.64 0.24 0.07 0.19 -1 -1 0.24 0.0379465 0.0342732 98 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 5.02 vpr 62.99 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64500 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 24.3 MiB 0.24 795 6381 1346 4871 164 63.0 MiB 0.10 0.00 3.75729 -117.97 -3.75729 3.75729 0.95 0.000926829 0.000861408 0.036408 0.0338473 28 2265 36 6.65987e+06 215526 500653. 1732.36 1.34 0.174998 0.157615 21970 115934 -1 1928 18 1094 1466 111760 27008 2.86391 2.86391 -107.08 -2.86391 0 0 612192. 2118.31 0.21 0.07 0.16 -1 -1 0.21 0.0345117 0.0311984 106 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.09 vpr 63.64 MiB -1 -1 0.25 18292 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65172 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.7 MiB 0.33 1032 9253 2342 6405 506 63.6 MiB 0.15 0.00 4.35378 -139.852 -4.35378 4.35378 0.94 0.00113281 0.00105434 0.0569914 0.0530016 32 2581 24 6.65987e+06 304272 554710. 1919.41 1.13 0.204978 0.186189 22834 132086 -1 2335 23 1771 2666 209760 50159 3.35597 3.35597 -128.164 -3.35597 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0513024 0.0464911 139 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 7.21 vpr 63.49 MiB -1 -1 0.24 18464 1 0.03 -1 -1 30432 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65016 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 24.4 MiB 0.22 904 11170 2626 8078 466 63.5 MiB 0.17 0.00 4.4708 -131.273 -4.4708 4.4708 0.95 0.00141497 0.00131766 0.0651653 0.0605534 26 2686 26 6.65987e+06 380340 477104. 1650.88 3.37 0.365739 0.329846 21682 110474 -1 2183 23 1793 2828 203980 50946 3.53805 3.53805 -128.974 -3.53805 0 0 585099. 2024.56 0.19 0.12 0.16 -1 -1 0.19 0.0525177 0.0474985 133 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.53 vpr 62.69 MiB -1 -1 0.23 18120 1 0.03 -1 -1 30468 -1 -1 21 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64192 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.2 MiB 0.20 775 11118 2644 7385 1089 62.7 MiB 0.12 0.00 3.16393 -91.7211 -3.16393 3.16393 0.95 0.000842768 0.000783419 0.0554164 0.0515421 26 1886 20 6.65987e+06 266238 477104. 1650.88 0.99 0.159683 0.14453 21682 110474 -1 1632 21 953 1577 103397 26227 3.02425 3.02425 -95.9827 -3.02425 0 0 585099. 2024.56 0.17 0.04 0.08 -1 -1 0.17 0.0157666 0.0141281 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.22 vpr 63.45 MiB -1 -1 0.25 18308 1 0.03 -1 -1 30396 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64972 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 24.2 MiB 0.44 1049 12733 3859 6982 1892 63.4 MiB 0.19 0.00 4.04739 -126.772 -4.04739 4.04739 0.94 0.00118398 0.00110144 0.0843605 0.0784754 32 2465 23 6.65987e+06 266238 554710. 1919.41 1.12 0.237076 0.215844 22834 132086 -1 2263 22 1399 2609 184714 43785 3.30877 3.30877 -123.275 -3.30877 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0514311 0.0465786 132 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.10 vpr 63.65 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30244 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65180 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 24.7 MiB 0.31 1072 15523 5016 8339 2168 63.7 MiB 0.21 0.00 4.31458 -139.763 -4.31458 4.31458 0.95 0.00111427 0.00103673 0.0962898 0.0895915 28 2759 21 6.65987e+06 266238 500653. 1732.36 1.16 0.236868 0.216063 21970 115934 -1 2320 22 1477 2115 158122 36710 3.34077 3.34077 -130.407 -3.34077 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0495131 0.0448133 137 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.87 vpr 63.34 MiB -1 -1 0.24 18376 1 0.03 -1 -1 30532 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64860 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 24.3 MiB 0.22 861 11433 2956 7633 844 63.3 MiB 0.14 0.00 2.85064 -102.994 -2.85064 2.85064 0.98 0.00103159 0.000958141 0.059166 0.0549529 26 2112 33 6.65987e+06 367662 477104. 1650.88 1.12 0.208523 0.188626 21682 110474 -1 1843 21 1037 1648 113814 27369 2.25971 2.25971 -97.6887 -2.25971 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0430767 0.0388384 110 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.58 vpr 62.41 MiB -1 -1 0.22 17948 1 0.02 -1 -1 30260 -1 -1 15 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 63912 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.8 MiB 0.09 640 7086 1644 4840 602 62.4 MiB 0.10 0.00 2.24807 -77.7472 -2.24807 2.24807 0.95 0.000802936 0.000747446 0.0378944 0.0352183 32 1472 22 6.65987e+06 190170 554710. 1919.41 1.01 0.132942 0.11964 22834 132086 -1 1323 20 722 1033 82060 19639 1.82185 1.82185 -79.5246 -1.82185 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0394663 0.0353175 81 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.01 vpr 63.02 MiB -1 -1 0.24 18304 1 0.03 -1 -1 30476 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64528 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 24.3 MiB 0.44 819 13254 3680 8313 1261 63.0 MiB 0.17 0.00 4.81074 -140.485 -4.81074 4.81074 0.95 0.000968572 0.000900445 0.0748601 0.0696307 28 2098 21 6.65987e+06 240882 500653. 1732.36 1.02 0.196591 0.178711 21970 115934 -1 1857 20 1070 1543 100986 25413 3.52637 3.52637 -129.935 -3.52637 0 0 612192. 2118.31 0.20 0.08 0.17 -1 -1 0.20 0.0396961 0.0358177 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.78 vpr 63.41 MiB -1 -1 0.28 18260 1 0.03 -1 -1 30524 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64932 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 24.5 MiB 0.17 945 6791 1317 5158 316 63.4 MiB 0.11 0.00 4.14893 -130.493 -4.14893 4.14893 0.94 0.00112042 0.00104215 0.0395154 0.0367075 30 2165 21 6.65987e+06 393018 526063. 1820.29 1.05 0.181506 0.164266 22546 126617 -1 1916 20 1065 1823 104569 25646 3.35542 3.35542 -121.191 -3.35542 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0453043 0.041114 135 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 7.71 vpr 63.52 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65048 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 24.6 MiB 0.35 1176 13911 3816 8065 2030 63.5 MiB 0.22 0.00 4.32644 -135.935 -4.32644 4.32644 0.97 0.00118738 0.00110324 0.0922316 0.0858076 30 2892 26 6.65987e+06 291594 526063. 1820.29 3.61 0.496885 0.449014 22546 126617 -1 2328 21 1340 2058 129832 30438 3.66891 3.66891 -131.045 -3.66891 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0501869 0.0454515 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 6.87 vpr 62.50 MiB -1 -1 0.22 18028 1 0.02 -1 -1 30700 -1 -1 18 26 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64004 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.9 MiB 0.24 372 9836 3070 4693 2073 62.5 MiB 0.08 0.00 2.3895 -62.8108 -2.3895 2.3895 0.94 0.00064365 0.00059617 0.0414331 0.0383979 34 990 23 6.65987e+06 228204 585099. 2024.56 3.18 0.20486 0.183036 23122 138558 -1 740 22 626 880 46521 14594 1.77391 1.77391 -59.0235 -1.77391 0 0 742403. 2568.87 0.23 0.06 0.20 -1 -1 0.23 0.0285182 0.0255504 77 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.90 vpr 63.23 MiB -1 -1 0.22 17808 1 0.03 -1 -1 30392 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64752 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 24.5 MiB 0.17 1008 10873 2978 7123 772 63.2 MiB 0.16 0.00 4.661 -123.259 -4.661 4.661 0.97 0.000990787 0.000921447 0.0638147 0.0594408 28 2243 21 6.65987e+06 266238 500653. 1732.36 1.08 0.19604 0.177936 21970 115934 -1 2037 20 1217 2257 145493 35417 3.47737 3.47737 -119.471 -3.47737 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.040269 0.0364632 118 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.47 vpr 62.36 MiB -1 -1 0.23 17512 1 0.02 -1 -1 30068 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 63852 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.8 MiB 0.08 415 10370 2863 4808 2699 62.4 MiB 0.09 0.00 2.54569 -72.1104 -2.54569 2.54569 0.95 0.000622871 0.000576035 0.0409207 0.0378119 30 1190 23 6.65987e+06 177492 526063. 1820.29 0.96 0.120531 0.108317 22546 126617 -1 825 15 441 489 30107 9082 1.81985 1.81985 -67.388 -1.81985 0 0 666494. 2306.21 0.22 0.04 0.20 -1 -1 0.22 0.0203601 0.0183344 79 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 6.56 vpr 63.32 MiB -1 -1 0.24 18360 1 0.03 -1 -1 30212 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64836 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 24.5 MiB 0.15 867 9679 2178 7022 479 63.3 MiB 0.13 0.00 4.41865 -121.229 -4.41865 4.41865 0.94 0.00101104 0.000939901 0.0491602 0.0457273 26 2282 25 6.65987e+06 380340 477104. 1650.88 2.93 0.304335 0.273971 21682 110474 -1 2018 19 1123 1953 139536 33097 3.46611 3.46611 -115.918 -3.46611 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0392684 0.0355335 123 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.71 vpr 63.23 MiB -1 -1 0.22 17820 1 0.03 -1 -1 30508 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64748 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1032 8303 1834 5800 669 63.2 MiB 0.11 0.00 3.62555 -107.534 -3.62555 3.62555 0.94 0.00103335 0.00096157 0.042822 0.0398822 30 2296 21 6.65987e+06 393018 526063. 1820.29 1.04 0.172157 0.156049 22546 126617 -1 1936 17 951 1747 103781 24707 2.60951 2.60951 -101.171 -2.60951 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0366298 0.0332637 128 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.12 vpr 63.78 MiB -1 -1 0.24 18260 1 0.03 -1 -1 30352 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65312 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 24.9 MiB 0.21 1026 15366 4954 8031 2381 63.8 MiB 0.21 0.00 4.40163 -128.768 -4.40163 4.40163 0.96 0.00109849 0.00102091 0.0869188 0.0807738 28 2442 27 6.65987e+06 329628 500653. 1732.36 1.27 0.235587 0.214107 21970 115934 -1 2179 23 1567 2740 186346 45042 3.80765 3.80765 -125.775 -3.80765 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.04965 0.044917 125 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.70 vpr 62.94 MiB -1 -1 0.23 17968 1 0.03 -1 -1 30252 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64448 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 24.3 MiB 0.13 743 11260 3712 5303 2245 62.9 MiB 0.14 0.00 2.93487 -98.1536 -2.93487 2.93487 0.95 0.000948739 0.000881594 0.0648184 0.0602171 32 1787 22 6.65987e+06 202848 554710. 1919.41 1.06 0.185652 0.168276 22834 132086 -1 1657 18 922 1451 117227 29232 2.68365 2.68365 -101.41 -2.68365 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.0353921 0.0319579 101 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.73 vpr 62.83 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30420 -1 -1 23 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64340 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.2 MiB 0.13 765 12733 3276 8152 1305 62.8 MiB 0.14 0.00 2.99867 -95.3722 -2.99867 2.99867 0.96 0.000882445 0.000820379 0.0632911 0.0588377 32 1762 22 6.65987e+06 291594 554710. 1919.41 1.04 0.175706 0.159203 22834 132086 -1 1550 21 1022 1559 110866 26682 2.65345 2.65345 -93.7498 -2.65345 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.036904 0.0332013 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.64 vpr 62.91 MiB -1 -1 0.22 17980 1 0.03 -1 -1 30216 -1 -1 23 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64416 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.3 MiB 0.13 635 14123 3811 8579 1733 62.9 MiB 0.16 0.00 3.31478 -92.4847 -3.31478 3.31478 0.94 0.000873424 0.00081205 0.0711057 0.0660562 28 1757 22 6.65987e+06 291594 500653. 1732.36 1.04 0.182423 0.165491 21970 115934 -1 1536 21 987 1728 117482 28354 2.72971 2.72971 -91.6272 -2.72971 0 0 612192. 2118.31 0.20 0.08 0.16 -1 -1 0.20 0.0366044 0.0329663 98 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.74 vpr 63.32 MiB -1 -1 0.21 17844 1 0.04 -1 -1 30436 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64840 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.6 MiB 0.14 727 6383 1361 4583 439 63.3 MiB 0.09 0.00 3.74563 -110.014 -3.74563 3.74563 0.94 0.000891533 0.000829423 0.0341216 0.0317566 32 2015 24 6.65987e+06 240882 554710. 1919.41 1.09 0.150871 0.136216 22834 132086 -1 1723 24 1294 2106 150031 37102 2.88191 2.88191 -108.51 -2.88191 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0418944 0.037727 110 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.91 vpr 62.86 MiB -1 -1 0.25 18112 1 0.03 -1 -1 30228 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64368 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.2 MiB 0.12 616 5517 989 3982 546 62.9 MiB 0.07 0.00 3.36515 -97.3921 -3.36515 3.36515 0.96 0.00091996 0.000855164 0.027672 0.0257416 28 1893 44 6.65987e+06 342306 500653. 1732.36 1.29 0.176357 0.158607 21970 115934 -1 1515 18 973 1606 96572 25963 2.60351 2.60351 -96.0123 -2.60351 0 0 612192. 2118.31 0.22 0.07 0.16 -1 -1 0.22 0.0337466 0.0304372 103 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.63 vpr 63.03 MiB -1 -1 0.23 18396 1 0.03 -1 -1 30516 -1 -1 25 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64540 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 24.3 MiB 0.25 865 14450 4409 7950 2091 63.0 MiB 0.17 0.00 3.27578 -105.17 -3.27578 3.27578 0.95 0.000944017 0.000877226 0.0749218 0.0696389 28 1839 20 6.65987e+06 316950 500653. 1732.36 1.00 0.191784 0.174098 21970 115934 -1 1668 19 1131 1734 112521 26880 2.24065 2.24065 -91.0997 -2.24065 0 0 612192. 2118.31 0.20 0.08 0.10 -1 -1 0.20 0.03659 0.0330131 105 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.16 vpr 63.48 MiB -1 -1 0.27 18392 1 0.03 -1 -1 30560 -1 -1 37 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65000 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 24.5 MiB 0.33 1216 16551 4115 10400 2036 63.5 MiB 0.23 0.00 3.87192 -114.947 -3.87192 3.87192 0.95 0.00121413 0.00112966 0.0889159 0.0827992 32 2906 22 6.65987e+06 469086 554710. 1919.41 1.13 0.245268 0.223824 22834 132086 -1 2417 23 1490 2577 177203 40901 3.45699 3.45699 -115.444 -3.45699 0 0 701300. 2426.64 0.22 0.11 0.20 -1 -1 0.22 0.0552928 0.0501449 150 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 5.45 vpr 63.62 MiB -1 -1 0.25 18284 1 0.03 -1 -1 30388 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65144 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 24.7 MiB 0.27 918 16804 4626 9521 2657 63.6 MiB 0.22 0.00 3.76954 -123.355 -3.76954 3.76954 0.97 0.00124214 0.00115532 0.0942031 0.0874085 26 2668 47 6.65987e+06 456408 477104. 1650.88 1.51 0.301421 0.273774 21682 110474 -1 2245 24 1891 2891 195638 48936 3.04517 3.04517 -122.455 -3.04517 0 0 585099. 2024.56 0.19 0.12 0.16 -1 -1 0.19 0.0582651 0.0527821 146 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.13 vpr 62.96 MiB -1 -1 0.23 18448 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64476 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 24.3 MiB 0.46 795 7304 1575 5379 350 63.0 MiB 0.11 0.00 4.09732 -119.878 -4.09732 4.09732 0.94 0.000930078 0.000864587 0.0421839 0.0391996 28 2195 22 6.65987e+06 215526 500653. 1732.36 1.17 0.160839 0.145292 21970 115934 -1 1825 19 1143 1606 130784 32543 2.88997 2.88997 -108.642 -2.88997 0 0 612192. 2118.31 0.24 0.08 0.17 -1 -1 0.24 0.0363585 0.0328039 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.10 vpr 63.42 MiB -1 -1 0.26 18328 1 0.03 -1 -1 30476 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64944 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 24.5 MiB 0.32 944 8727 2152 5844 731 63.4 MiB 0.14 0.00 3.92632 -125.266 -3.92632 3.92632 0.95 0.00118326 0.00110093 0.0571726 0.0531719 32 2313 22 6.65987e+06 304272 554710. 1919.41 1.14 0.210552 0.191072 22834 132086 -1 2062 17 1341 2253 148715 36076 2.88497 2.88497 -111.232 -2.88497 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0418105 0.0379178 137 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.48 vpr 63.23 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30392 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64748 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 24.5 MiB 0.44 1273 15165 4552 8275 2338 63.2 MiB 0.24 0.00 5.69001 -171.445 -5.69001 5.69001 1.00 0.0011943 0.00111069 0.0937981 0.0872163 32 3198 21 6.65987e+06 342306 554710. 1919.41 1.20 0.245625 0.223806 22834 132086 -1 2681 21 2241 3341 233703 55050 5.05943 5.05943 -165.827 -5.05943 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0503126 0.0456297 170 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.89 vpr 63.60 MiB -1 -1 0.27 18304 1 0.03 -1 -1 30528 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65128 31 32 383 305 1 209 88 17 17 289 -1 unnamed_device 24.6 MiB 0.99 1100 16468 4969 9311 2188 63.6 MiB 0.24 0.00 4.92247 -149.927 -4.92247 4.92247 0.94 0.00121419 0.00112977 0.106783 0.0992866 28 2956 24 6.65987e+06 316950 500653. 1732.36 1.21 0.26728 0.243933 21970 115934 -1 2444 20 1711 2610 184593 42841 4.55942 4.55942 -152.729 -4.55942 0 0 612192. 2118.31 0.20 0.12 0.16 -1 -1 0.20 0.0585458 0.0531635 162 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.31 vpr 63.45 MiB -1 -1 0.25 18412 1 0.03 -1 -1 30504 -1 -1 29 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64972 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 24.4 MiB 0.30 1122 13754 3789 8484 1481 63.4 MiB 0.20 0.00 4.34966 -130.317 -4.34966 4.34966 0.94 0.00113495 0.00105607 0.0789814 0.0734852 28 2730 23 6.65987e+06 367662 500653. 1732.36 1.33 0.226688 0.20639 21970 115934 -1 2379 24 1547 2747 221257 68362 2.96211 2.96211 -115.349 -2.96211 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0530863 0.0480438 133 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.21 vpr 63.16 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30464 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64672 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 24.4 MiB 0.24 922 8780 2172 6205 403 63.2 MiB 0.12 0.00 4.1266 -111.615 -4.1266 4.1266 0.94 0.000976736 0.000908162 0.0482092 0.0448312 26 2725 28 6.65987e+06 278916 477104. 1650.88 1.50 0.182324 0.164894 21682 110474 -1 2215 21 1435 2093 159456 39164 3.77077 3.77077 -122.253 -3.77077 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0413757 0.0373758 118 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.50 vpr 64.02 MiB -1 -1 0.27 18456 1 0.03 -1 -1 30500 -1 -1 38 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65556 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 25.0 MiB 0.33 1225 11764 2792 7889 1083 64.0 MiB 0.19 0.00 4.86514 -158.575 -4.86514 4.86514 0.95 0.00143806 0.00133947 0.0751709 0.0700049 28 3124 45 6.65987e+06 481764 500653. 1732.36 1.48 0.312061 0.283272 21970 115934 -1 2650 20 1662 2607 182188 42695 4.00331 4.00331 -150.244 -4.00331 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.0578674 0.0525295 172 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.64 vpr 62.96 MiB -1 -1 0.23 18112 1 0.03 -1 -1 30276 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64468 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.0 MiB 0.16 792 5391 1113 3866 412 63.0 MiB 0.08 0.00 3.45892 -98.948 -3.45892 3.45892 0.98 0.000886699 0.000823996 0.0285312 0.0265293 30 1745 20 6.65987e+06 266238 526063. 1820.29 1.01 0.137933 0.124201 22546 126617 -1 1543 22 928 1589 93549 22274 2.53445 2.53445 -94.5311 -2.53445 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0383099 0.034487 101 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.26 vpr 63.56 MiB -1 -1 0.14 18496 1 0.03 -1 -1 30308 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65084 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 24.6 MiB 0.28 1177 11804 3160 7260 1384 63.6 MiB 0.18 0.00 4.89669 -145.469 -4.89669 4.89669 0.95 0.00112207 0.00103949 0.0729087 0.0678875 28 3089 30 6.65987e+06 291594 500653. 1732.36 1.44 0.229783 0.208883 21970 115934 -1 2581 20 1333 1883 146810 33422 4.26197 4.26197 -141.582 -4.26197 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0461272 0.0418398 142 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 7.23 vpr 63.43 MiB -1 -1 0.25 18316 1 0.03 -1 -1 30368 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64948 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.5 MiB 0.24 868 8311 1653 6113 545 63.4 MiB 0.12 0.00 3.91407 -115.086 -3.91407 3.91407 0.94 0.00112959 0.00105043 0.0453614 0.0421848 32 2763 28 6.65987e+06 418374 554710. 1919.41 3.41 0.343873 0.309999 22834 132086 -1 1916 21 1148 2009 124766 32409 3.46691 3.46691 -116.024 -3.46691 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.047313 0.0428769 131 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 7.21 vpr 63.09 MiB -1 -1 0.23 17840 1 0.03 -1 -1 30364 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64604 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 24.3 MiB 0.17 846 6328 1287 4843 198 63.1 MiB 0.10 0.00 3.96153 -117.52 -3.96153 3.96153 0.95 0.00100553 0.000935398 0.0358303 0.0333794 34 2209 29 6.65987e+06 304272 585099. 2024.56 3.43 0.366352 0.32902 23122 138558 -1 1866 22 1307 2488 166496 40460 3.30605 3.30605 -113.005 -3.30605 0 0 742403. 2568.87 0.24 0.11 0.20 -1 -1 0.24 0.0513863 0.0465235 123 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.10 vpr 63.60 MiB -1 -1 0.25 18476 1 0.03 -1 -1 30476 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65128 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1090 7835 1660 5643 532 63.6 MiB 0.15 0.00 4.46734 -132.214 -4.46734 4.46734 0.95 0.00114335 0.00106181 0.0568497 0.0528414 32 2571 22 6.65987e+06 278916 554710. 1919.41 1.10 0.204406 0.185734 22834 132086 -1 2207 19 1218 1664 122203 29709 3.44631 3.44631 -120.06 -3.44631 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0442252 0.0401007 136 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.46 vpr 63.70 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30408 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65224 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 24.6 MiB 0.45 1025 8951 2023 6429 499 63.7 MiB 0.13 0.00 3.78594 -122.94 -3.78594 3.78594 0.95 0.00115941 0.00107852 0.0514631 0.0478908 26 2718 30 6.65987e+06 393018 477104. 1650.88 1.46 0.217606 0.197288 21682 110474 -1 2286 19 1324 2293 170267 40629 3.22951 3.22951 -119.992 -3.22951 0 0 585099. 2024.56 0.21 0.10 0.16 -1 -1 0.21 0.0454517 0.0412544 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.33 vpr 63.56 MiB -1 -1 0.26 18456 1 0.03 -1 -1 30384 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65088 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 24.7 MiB 0.39 1095 17268 5091 9567 2610 63.6 MiB 0.24 0.00 4.49052 -137.752 -4.49052 4.49052 0.95 0.001218 0.00113216 0.0945447 0.0879211 32 2591 25 6.65987e+06 456408 554710. 1919.41 1.12 0.25589 0.233149 22834 132086 -1 2286 18 1204 1910 149660 34665 3.11931 3.11931 -119.377 -3.11931 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0454549 0.0412779 144 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.82 vpr 63.30 MiB -1 -1 0.23 18180 1 0.03 -1 -1 30376 -1 -1 29 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64824 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 24.3 MiB 0.15 881 8493 1904 6212 377 63.3 MiB 0.12 0.00 3.98836 -116.947 -3.98836 3.98836 0.94 0.00102711 0.000955489 0.0445287 0.0413935 32 2216 23 6.65987e+06 367662 554710. 1919.41 1.11 0.177286 0.160569 22834 132086 -1 1884 21 1347 2304 171026 40524 3.50619 3.50619 -113.858 -3.50619 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0431065 0.0389652 122 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.91 vpr 63.45 MiB -1 -1 0.23 18316 1 0.03 -1 -1 30244 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64972 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 24.5 MiB 0.20 1058 6423 1250 4686 487 63.4 MiB 0.11 0.00 4.75229 -137.839 -4.75229 4.75229 0.95 0.00105872 0.000984974 0.0387974 0.0361322 32 2630 24 6.65987e+06 291594 554710. 1919.41 1.13 0.178149 0.161299 22834 132086 -1 2242 22 1711 2503 176437 43569 3.57051 3.57051 -125.843 -3.57051 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0464737 0.0420654 133 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.86 vpr 63.74 MiB -1 -1 0.25 18340 1 0.03 -1 -1 30304 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65272 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 24.8 MiB 0.52 1053 14450 4497 7379 2574 63.7 MiB 0.22 0.00 4.75055 -138.917 -4.75055 4.75055 0.84 0.0011874 0.00110419 0.0943325 0.087751 32 2906 22 6.65987e+06 291594 554710. 1919.41 1.65 0.285911 0.259886 22834 132086 -1 2385 21 1525 2420 194227 43813 3.87811 3.87811 -130.62 -3.87811 0 0 701300. 2426.64 0.26 0.11 0.19 -1 -1 0.26 0.0498931 0.0452421 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.11 vpr 63.58 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30404 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65108 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 24.6 MiB 0.27 901 8269 1876 5929 464 63.6 MiB 0.14 0.00 3.98149 -123.442 -3.98149 3.98149 0.95 0.00121651 0.00113084 0.057569 0.0535773 32 2673 24 6.65987e+06 266238 554710. 1919.41 1.18 0.216747 0.196814 22834 132086 -1 2180 20 1554 2701 181001 44652 3.34605 3.34605 -120.166 -3.34605 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0468669 0.0427269 135 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.58 vpr 62.56 MiB -1 -1 0.21 17924 1 0.03 -1 -1 30428 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64064 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.8 MiB 0.09 757 15103 5160 7628 2315 62.6 MiB 0.17 0.00 3.22598 -97.9932 -3.22598 3.22598 0.95 0.000869287 0.000807647 0.0755882 0.0702951 30 1725 20 6.65987e+06 304272 526063. 1820.29 1.02 0.182467 0.16574 22546 126617 -1 1511 18 719 1155 68340 16793 2.44445 2.44445 -90.034 -2.44445 0 0 666494. 2306.21 0.21 0.06 0.18 -1 -1 0.21 0.0317639 0.028628 97 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.89 vpr 63.50 MiB -1 -1 0.23 18192 1 0.03 -1 -1 30232 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65028 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 24.6 MiB 0.20 854 11979 3325 7498 1156 63.5 MiB 0.17 0.00 4.00764 -134.08 -4.00764 4.00764 0.95 0.00109137 0.00101472 0.0741439 0.0689036 30 2155 21 6.65987e+06 253560 526063. 1820.29 1.07 0.210112 0.190961 22546 126617 -1 1828 20 1167 1629 90216 22329 3.29077 3.29077 -127.446 -3.29077 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0429162 0.0388549 125 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.43 vpr 63.82 MiB -1 -1 0.26 18292 1 0.03 -1 -1 30452 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65348 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 24.9 MiB 0.38 1274 10235 2657 6661 917 63.8 MiB 0.18 0.00 5.13258 -155.405 -5.13258 5.13258 0.94 0.00127517 0.001187 0.066657 0.0620628 32 3564 27 6.65987e+06 354984 554710. 1919.41 1.29 0.240442 0.218962 22834 132086 -1 2808 22 2219 3526 282912 64887 4.56457 4.56457 -150.973 -4.56457 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0564188 0.0512285 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.26 vpr 63.49 MiB -1 -1 0.24 18404 1 0.03 -1 -1 30492 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65012 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 24.6 MiB 0.23 873 6359 1089 5003 267 63.5 MiB 0.11 0.00 4.1576 -127.981 -4.1576 4.1576 0.97 0.00112413 0.00104626 0.0366207 0.0341042 26 2726 32 6.65987e+06 393018 477104. 1650.88 1.46 0.198124 0.179283 21682 110474 -1 2024 22 1367 2274 171762 46270 2.88371 2.88371 -117.363 -2.88371 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0490808 0.0444489 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.91 vpr 63.28 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30456 -1 -1 26 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64796 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 24.6 MiB 0.13 662 8278 1864 5308 1106 63.3 MiB 0.11 0.00 3.33678 -99.7803 -3.33678 3.33678 0.98 0.000931765 0.000866405 0.0426123 0.0396276 26 2003 23 6.65987e+06 329628 477104. 1650.88 1.27 0.162226 0.146526 21682 110474 -1 1733 28 1328 2141 170972 48235 2.80971 2.80971 -100.9 -2.80971 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0494889 0.0444823 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.70 vpr 63.80 MiB -1 -1 0.26 18636 1 0.03 -1 -1 30448 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65336 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 25.2 MiB 0.58 1210 14939 4355 8110 2474 63.8 MiB 0.25 0.00 6.10992 -175.031 -6.10992 6.10992 0.95 0.00137732 0.00128528 0.108708 0.101371 32 3354 35 6.65987e+06 316950 554710. 1919.41 1.32 0.313975 0.286336 22834 132086 -1 2699 22 2073 3029 230426 54873 4.99717 4.99717 -164.193 -4.99717 0 0 701300. 2426.64 0.23 0.13 0.21 -1 -1 0.23 0.0604745 0.0549535 168 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.95 vpr 63.58 MiB -1 -1 0.23 18348 1 0.03 -1 -1 30556 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65108 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 24.7 MiB 0.24 931 10389 2832 6808 749 63.6 MiB 0.14 0.00 4.39794 -132.47 -4.39794 4.39794 0.95 0.00112177 0.00104394 0.0565661 0.0526668 32 2208 19 6.65987e+06 405696 554710. 1919.41 1.09 0.193137 0.175542 22834 132086 -1 1932 22 1453 2244 137345 34182 3.40671 3.40671 -122.312 -3.40671 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.048422 0.043859 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 7.62 vpr 62.57 MiB -1 -1 0.24 17800 1 0.02 -1 -1 30456 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64072 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.8 MiB 0.12 660 6999 1482 4945 572 62.6 MiB 0.09 0.00 3.21869 -92.7316 -3.21869 3.21869 0.94 0.000829467 0.000770802 0.0325455 0.030235 28 2077 24 6.65987e+06 291594 500653. 1732.36 4.08 0.241013 0.215367 21970 115934 -1 1681 16 895 1485 107638 29276 2.86085 2.86085 -96.7892 -2.86085 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.027758 0.0250592 100 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 7.88 vpr 63.66 MiB -1 -1 0.25 18372 1 0.03 -1 -1 30244 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65184 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.7 MiB 0.25 1092 11573 2759 8065 749 63.7 MiB 0.17 0.00 5.1174 -127.812 -5.1174 5.1174 0.95 0.0011621 0.0010815 0.0633352 0.0589677 28 2684 21 6.65987e+06 431052 500653. 1732.36 4.00 0.400503 0.36172 21970 115934 -1 2316 21 1339 2724 178100 42191 4.26379 4.26379 -125.657 -4.26379 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0486327 0.0441051 139 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.74 vpr 62.79 MiB -1 -1 0.23 17836 1 0.03 -1 -1 30168 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64300 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.1 MiB 0.14 658 7038 1455 4830 753 62.8 MiB 0.09 0.00 3.29684 -98.8102 -3.29684 3.29684 0.95 0.000891859 0.0008306 0.0363352 0.0337989 28 1997 23 6.65987e+06 253560 500653. 1732.36 1.13 0.148636 0.134094 21970 115934 -1 1729 23 1193 1963 127910 33709 2.78971 2.78971 -105.771 -2.78971 0 0 612192. 2118.31 0.20 0.08 0.16 -1 -1 0.20 0.0392549 0.0353334 104 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.76 vpr 62.83 MiB -1 -1 0.23 17996 1 0.04 -1 -1 30232 -1 -1 33 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64336 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 24.1 MiB 0.18 665 12623 3525 7434 1664 62.8 MiB 0.15 0.00 3.96152 -101.883 -3.96152 3.96152 0.94 0.000930894 0.000865393 0.0567919 0.0527596 28 1786 19 6.65987e+06 418374 500653. 1732.36 1.03 0.170258 0.154258 21970 115934 -1 1548 19 875 1625 90461 23386 2.70545 2.70545 -91.9428 -2.70545 0 0 612192. 2118.31 0.20 0.07 0.16 -1 -1 0.20 0.0356214 0.0321386 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.19 vpr 63.69 MiB -1 -1 0.26 18288 1 0.03 -1 -1 30428 -1 -1 24 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65220 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1014 15523 4859 8256 2408 63.7 MiB 0.22 0.00 4.24664 -124.159 -4.24664 4.24664 0.96 0.00114021 0.00106083 0.0978038 0.0909966 32 2567 21 6.65987e+06 304272 554710. 1919.41 1.13 0.241936 0.2206 22834 132086 -1 2117 20 1376 2076 136262 33675 3.28517 3.28517 -113.319 -3.28517 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0470917 0.0427811 138 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.82 vpr 63.53 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30436 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65056 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 24.5 MiB 0.25 813 6133 1250 4669 214 63.5 MiB 0.10 0.00 4.31499 -129.627 -4.31499 4.31499 0.95 0.00116043 0.00107945 0.0395348 0.0367938 30 1970 19 6.65987e+06 304272 526063. 1820.29 1.10 0.180882 0.163866 22546 126617 -1 1692 22 1182 1793 103387 25400 3.36617 3.36617 -122.943 -3.36617 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0505341 0.0457503 130 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.07 vpr 63.72 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30484 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65248 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 24.8 MiB 0.26 1032 14575 3712 8961 1902 63.7 MiB 0.22 0.00 4.48612 -136.801 -4.48612 4.48612 0.95 0.00114461 0.0010639 0.0847893 0.0788815 32 2535 24 6.65987e+06 342306 554710. 1919.41 1.12 0.233732 0.212725 22834 132086 -1 2295 23 1447 2410 173321 42120 3.78571 3.78571 -133.085 -3.78571 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0517568 0.0467653 132 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.78 vpr 63.21 MiB -1 -1 0.22 18044 1 0.02 -1 -1 30344 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64728 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 24.5 MiB 0.26 845 7820 1849 5541 430 63.2 MiB 0.11 0.00 4.62977 -131.711 -4.62977 4.62977 0.95 0.000930745 0.000865337 0.0450421 0.0418785 30 1899 23 6.65987e+06 202848 526063. 1820.29 1.03 0.16668 0.150538 22546 126617 -1 1645 17 740 988 58949 14400 2.99551 2.99551 -109.89 -2.99551 0 0 666494. 2306.21 0.22 0.07 0.19 -1 -1 0.22 0.0375276 0.033951 103 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.99 vpr 63.27 MiB -1 -1 0.24 18300 1 0.03 -1 -1 30512 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64784 31 32 319 272 1 169 82 17 17 289 -1 unnamed_device 24.2 MiB 0.31 770 10050 2757 6264 1029 63.3 MiB 0.14 0.00 3.69598 -115.146 -3.69598 3.69598 0.95 0.00102715 0.00095425 0.0607515 0.0564443 32 2162 22 6.65987e+06 240882 554710. 1919.41 1.08 0.191192 0.173454 22834 132086 -1 1768 18 1168 1737 113654 28472 2.84751 2.84751 -107.067 -2.84751 0 0 701300. 2426.64 0.24 0.08 0.19 -1 -1 0.24 0.0385157 0.0349001 112 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.85 vpr 63.41 MiB -1 -1 0.25 18184 1 0.03 -1 -1 30516 -1 -1 33 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64932 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 24.4 MiB 0.27 862 12839 3032 8956 851 63.4 MiB 0.17 0.00 3.34001 -95.8914 -3.34001 3.34001 0.94 0.00106281 0.000987267 0.0662318 0.0616061 30 2014 15 6.65987e+06 418374 526063. 1820.29 1.04 0.188493 0.17136 22546 126617 -1 1612 16 903 1634 81475 20777 2.31385 2.31385 -88.8443 -2.31385 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0360279 0.0326929 123 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.88 vpr 62.97 MiB -1 -1 0.24 17988 1 0.03 -1 -1 30456 -1 -1 35 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64484 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 24.3 MiB 0.19 923 12623 3487 7239 1897 63.0 MiB 0.17 0.00 4.05815 -100.085 -4.05815 4.05815 0.95 0.000934772 0.000868929 0.0601678 0.056036 26 2143 24 6.65987e+06 443730 477104. 1650.88 1.14 0.182241 0.165243 21682 110474 -1 1913 22 1120 2192 155731 36609 3.61745 3.61745 -103.752 -3.61745 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0406317 0.0366351 115 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.14 vpr 63.32 MiB -1 -1 0.23 18388 1 0.03 -1 -1 30424 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64844 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 24.4 MiB 0.19 738 13937 5869 7500 568 63.3 MiB 0.19 0.00 3.86584 -113.256 -3.86584 3.86584 0.97 0.00101425 0.000941291 0.0868508 0.080656 28 2115 23 6.65987e+06 215526 500653. 1732.36 1.33 0.217079 0.197181 21970 115934 -1 1787 21 1283 2278 164397 39512 3.13237 3.13237 -107.313 -3.13237 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0424408 0.0383018 108 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.95 vpr 63.39 MiB -1 -1 0.25 18288 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64916 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 24.5 MiB 0.23 969 14724 4160 8401 2163 63.4 MiB 0.20 0.00 3.82038 -130.284 -3.82038 3.82038 0.94 0.00106379 0.000987985 0.0886032 0.0823261 32 2492 17 6.65987e+06 253560 554710. 1919.41 1.08 0.215112 0.195797 22834 132086 -1 2042 23 1301 1925 139900 33474 3.09151 3.09151 -122.48 -3.09151 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0481655 0.0434784 120 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.65 vpr 63.23 MiB -1 -1 0.24 17928 1 0.03 -1 -1 30516 -1 -1 32 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64744 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1063 16295 4388 9974 1933 63.2 MiB 0.21 0.00 4.27726 -124.126 -4.27726 4.27726 0.69 0.00101565 0.000945594 0.0805645 0.0750845 32 2473 23 6.65987e+06 405696 554710. 1919.41 1.11 0.212691 0.193795 22834 132086 -1 2129 22 1392 2561 170556 40719 3.37885 3.37885 -115.474 -3.37885 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0444382 0.0401966 127 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.16 vpr 63.62 MiB -1 -1 0.25 18396 1 0.03 -1 -1 30640 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65152 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1170 8402 2051 5537 814 63.6 MiB 0.15 0.00 5.08418 -160.146 -5.08418 5.08418 0.94 0.00115369 0.00107378 0.0544414 0.0506785 28 2990 21 6.65987e+06 278916 500653. 1732.36 1.24 0.199954 0.181699 21970 115934 -1 2498 22 1646 2393 166110 39375 4.04531 4.04531 -147.08 -4.04531 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0505112 0.0458039 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.65 vpr 63.46 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30336 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64988 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 24.6 MiB 0.23 1091 17397 4924 9824 2649 63.5 MiB 0.24 0.00 5.003 -142.071 -5.003 5.003 0.94 0.00123283 0.00114689 0.101195 0.0940783 26 3001 35 6.65987e+06 405696 477104. 1650.88 1.73 0.283171 0.257825 21682 110474 -1 2394 26 1658 3080 210340 51142 4.38023 4.38023 -139.951 -4.38023 0 0 585099. 2024.56 0.19 0.13 0.16 -1 -1 0.19 0.0613008 0.0555138 142 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.46 vpr 63.65 MiB -1 -1 0.26 18360 1 0.03 -1 -1 30484 -1 -1 37 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65180 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.7 MiB 0.29 1091 6681 1303 5078 300 63.7 MiB 0.12 0.00 4.26912 -136.659 -4.26912 4.26912 0.95 0.00123954 0.00115399 0.0390498 0.0363566 28 2821 25 6.65987e+06 469086 500653. 1732.36 1.56 0.203896 0.184946 21970 115934 -1 2298 20 1310 2344 169635 39495 3.61031 3.61031 -137.628 -3.61031 0 0 612192. 2118.31 0.21 0.10 0.16 -1 -1 0.21 0.0494498 0.0448885 140 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.80 vpr 62.89 MiB -1 -1 0.24 18072 1 0.03 -1 -1 30208 -1 -1 19 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64400 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 24.3 MiB 0.21 870 11106 2831 6524 1751 62.9 MiB 0.14 0.00 3.61906 -110.424 -3.61906 3.61906 0.94 0.000917321 0.000849397 0.0607323 0.0565016 30 1808 22 6.65987e+06 240882 526063. 1820.29 1.02 0.176786 0.160282 22546 126617 -1 1593 18 831 1374 78001 18710 2.45705 2.45705 -95.548 -2.45705 0 0 666494. 2306.21 0.23 0.08 0.18 -1 -1 0.23 0.0358689 0.0324039 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.06 vpr 63.47 MiB -1 -1 0.26 18452 1 0.03 -1 -1 30516 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64996 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 24.5 MiB 0.25 978 15203 5869 8044 1290 63.5 MiB 0.23 0.00 4.78844 -136.276 -4.78844 4.78844 0.95 0.00119965 0.00111865 0.105169 0.0979055 30 2210 21 6.65987e+06 266238 526063. 1820.29 1.10 0.255646 0.233343 22546 126617 -1 1934 20 1109 1789 114143 25754 3.33502 3.33502 -122.499 -3.33502 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0485324 0.0440596 137 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.91 vpr 63.57 MiB -1 -1 0.26 18272 1 0.03 -1 -1 30464 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65092 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 24.6 MiB 0.30 1105 10813 2684 6840 1289 63.6 MiB 0.16 0.00 4.95137 -146.216 -4.95137 4.95137 0.96 0.00112072 0.00104327 0.0653678 0.0608237 26 3059 29 6.65987e+06 304272 477104. 1650.88 1.97 0.223277 0.202825 21682 110474 -1 2606 21 1834 2831 236536 53239 3.85079 3.85079 -136.884 -3.85079 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0470985 0.0426884 138 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.32 vpr 63.59 MiB -1 -1 0.26 18248 1 0.03 -1 -1 30320 -1 -1 28 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65112 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 24.6 MiB 0.50 1080 15187 4594 8064 2529 63.6 MiB 0.20 0.00 5.08067 -147.956 -5.08067 5.08067 0.95 0.00110431 0.00102722 0.0860232 0.0800054 32 2678 21 6.65987e+06 354984 554710. 1919.41 1.11 0.225526 0.205466 22834 132086 -1 2215 19 1421 2179 154955 36066 4.44137 4.44137 -146.653 -4.44137 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0429085 0.0389231 146 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.68 vpr 63.54 MiB -1 -1 0.26 18312 1 0.03 -1 -1 30492 -1 -1 31 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65068 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 24.7 MiB 0.92 986 11433 3001 7531 901 63.5 MiB 0.16 0.00 4.29269 -128.336 -4.29269 4.29269 0.95 0.00117749 0.00109463 0.0675335 0.0627677 32 2325 18 6.65987e+06 393018 554710. 1919.41 1.08 0.20969 0.190604 22834 132086 -1 1953 18 1287 2102 126883 31959 3.09751 3.09751 -118.051 -3.09751 0 0 701300. 2426.64 0.24 0.09 0.19 -1 -1 0.24 0.0438257 0.0396771 133 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.20 vpr 63.45 MiB -1 -1 0.24 18284 1 0.03 -1 -1 30572 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64968 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1063 15273 4695 8692 1886 63.4 MiB 0.23 0.00 4.80469 -139.024 -4.80469 4.80469 0.94 0.00118338 0.0011015 0.101249 0.094201 32 2665 26 6.65987e+06 253560 554710. 1919.41 1.18 0.257832 0.234984 22834 132086 -1 2271 20 1500 2649 184182 43178 3.63431 3.63431 -131.797 -3.63431 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0476347 0.0431782 133 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.20 vpr 63.48 MiB -1 -1 0.27 18300 1 0.03 -1 -1 30576 -1 -1 29 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65004 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 24.6 MiB 0.34 958 9738 2610 6016 1112 63.5 MiB 0.14 0.00 4.45269 -125.734 -4.45269 4.45269 0.96 0.0011749 0.0010927 0.0603444 0.056137 32 2223 22 6.65987e+06 367662 554710. 1919.41 1.11 0.21191 0.192554 22834 132086 -1 1938 21 1229 1998 139022 33910 3.16451 3.16451 -113.24 -3.16451 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0494219 0.0447638 131 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.65 vpr 62.59 MiB -1 -1 0.22 17604 1 0.03 -1 -1 30536 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64088 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.8 MiB 0.16 690 12416 3929 6813 1674 62.6 MiB 0.15 0.00 3.74649 -110.352 -3.74649 3.74649 0.95 0.000864885 0.000804487 0.0658729 0.061281 30 1524 18 6.65987e+06 190170 526063. 1820.29 0.99 0.170995 0.155371 22546 126617 -1 1376 20 695 1045 61922 15218 2.55525 2.55525 -97.3076 -2.55525 0 0 666494. 2306.21 0.22 0.06 0.18 -1 -1 0.22 0.0348584 0.0314476 96 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.11 vpr 63.68 MiB -1 -1 0.22 18156 1 0.03 -1 -1 30380 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65208 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 24.8 MiB 0.26 960 15004 4235 7978 2791 63.7 MiB 0.21 0.00 4.36949 -132.189 -4.36949 4.36949 0.97 0.00118863 0.00110523 0.0872509 0.0810859 32 2269 21 6.65987e+06 380340 554710. 1919.41 1.12 0.23712 0.215985 22834 132086 -1 1968 19 1292 2036 146239 34177 3.44591 3.44591 -124.108 -3.44591 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0455819 0.0413869 130 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.15 vpr 63.67 MiB -1 -1 0.15 18404 1 0.03 -1 -1 30532 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65200 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1050 14907 5385 7856 1666 63.7 MiB 0.23 0.00 4.72838 -146.592 -4.72838 4.72838 0.95 0.00126387 0.00117186 0.106325 0.098961 32 2511 22 6.65987e+06 253560 554710. 1919.41 1.16 0.267315 0.24403 22834 132086 -1 2230 20 1814 2933 210264 53065 3.94817 3.94817 -140.625 -3.94817 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0510397 0.0463828 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.91 vpr 62.97 MiB -1 -1 0.24 18008 1 0.03 -1 -1 30516 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64480 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 24.3 MiB 0.21 871 13403 4770 6898 1735 63.0 MiB 0.17 0.00 4.19052 -118.124 -4.19052 4.19052 0.97 0.000906552 0.000842295 0.0705443 0.0655298 30 2111 22 6.65987e+06 240882 526063. 1820.29 1.07 0.18414 0.166882 22546 126617 -1 1808 17 849 1110 81272 18639 3.15991 3.15991 -111.536 -3.15991 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0327062 0.029541 111 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.66 vpr 62.88 MiB -1 -1 0.23 17632 1 0.03 -1 -1 30484 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64388 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.3 MiB 0.13 780 8136 2089 5541 506 62.9 MiB 0.10 0.00 3.80235 -109.245 -3.80235 3.80235 0.95 0.000861488 0.000801578 0.0407619 0.0379166 26 2089 42 6.65987e+06 266238 477104. 1650.88 1.11 0.179355 0.161442 21682 110474 -1 1756 22 1161 1934 143806 34427 3.03205 3.03205 -107.078 -3.03205 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0381719 0.0342613 106 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.16 vpr 63.60 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30484 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65128 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1098 14939 3925 8967 2047 63.6 MiB 0.22 0.00 4.99418 -158.194 -4.99418 4.99418 0.96 0.00115099 0.00107062 0.089957 0.0837221 32 2679 23 6.65987e+06 316950 554710. 1919.41 1.13 0.238697 0.217521 22834 132086 -1 2336 22 1791 2335 178657 41404 4.12957 4.12957 -145.917 -4.12957 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.049993 0.0453048 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.73 vpr 63.77 MiB -1 -1 0.26 18176 1 0.03 -1 -1 30460 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65300 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 24.8 MiB 0.46 1053 6923 1430 5143 350 63.8 MiB 0.12 0.00 5.07767 -147.587 -5.07767 5.07767 0.95 0.00114251 0.00106278 0.041862 0.0389527 28 3003 44 6.65987e+06 354984 500653. 1732.36 1.68 0.236255 0.213626 21970 115934 -1 2448 21 1670 2550 181209 45479 4.43131 4.43131 -150.407 -4.43131 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0491229 0.0444228 151 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 9.16 vpr 63.60 MiB -1 -1 0.24 18028 1 0.03 -1 -1 30276 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65124 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.6 MiB 0.19 1223 15412 3918 10280 1214 63.6 MiB 0.23 0.00 5.24834 -141.684 -5.24834 5.24834 0.95 0.00119096 0.00110925 0.0824383 0.0767824 32 2922 42 6.65987e+06 456408 554710. 1919.41 4.88 0.519674 0.469432 22834 132086 -1 2504 63 2431 4853 684939 336208 4.53123 4.53123 -144.101 -4.53123 0 0 701300. 2426.64 0.22 0.45 0.19 -1 -1 0.22 0.130189 0.117254 153 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.90 vpr 63.24 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30588 -1 -1 31 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64760 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 24.2 MiB 0.24 869 15423 3820 9178 2425 63.2 MiB 0.18 0.00 3.39798 -101.892 -3.39798 3.39798 0.94 0.00102122 0.000949174 0.0780111 0.0725117 32 1972 17 6.65987e+06 393018 554710. 1919.41 1.06 0.199754 0.181627 22834 132086 -1 1708 20 1201 2045 128708 32155 2.72991 2.72991 -96.0721 -2.72991 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0412317 0.0372346 120 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.52 vpr 62.77 MiB -1 -1 0.24 17988 1 0.02 -1 -1 30436 -1 -1 21 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64272 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.1 MiB 0.13 593 9712 2515 6016 1181 62.8 MiB 0.11 0.00 3.49724 -93.393 -3.49724 3.49724 0.95 0.000864998 0.000804914 0.0512367 0.0476825 28 1616 22 6.65987e+06 266238 500653. 1732.36 0.99 0.160023 0.144772 21970 115934 -1 1474 19 1032 1595 117394 28965 2.83991 2.83991 -93.4769 -2.83991 0 0 612192. 2118.31 0.20 0.07 0.16 -1 -1 0.20 0.0331255 0.0298348 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.99 vpr 63.59 MiB -1 -1 0.27 18560 1 0.03 -1 -1 30420 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65116 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 25.1 MiB 0.32 1325 16572 5545 8395 2632 63.6 MiB 0.26 0.00 4.13297 -134.503 -4.13297 4.13297 0.94 0.00134874 0.00125615 0.115019 0.10712 28 3623 29 6.65987e+06 329628 500653. 1732.36 1.93 0.301781 0.275417 21970 115934 -1 2935 23 2007 3480 259603 58514 4.03025 4.03025 -135.518 -4.03025 0 0 612192. 2118.31 0.20 0.13 0.16 -1 -1 0.20 0.060887 0.0552142 170 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.76 vpr 63.50 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30380 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65020 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 24.5 MiB 0.88 1078 12528 3903 6326 2299 63.5 MiB 0.18 0.00 5.17417 -148.706 -5.17417 5.17417 0.94 0.00115778 0.00107613 0.0825885 0.0767774 32 2735 23 6.65987e+06 266238 554710. 1919.41 1.16 0.23228 0.211377 22834 132086 -1 2211 20 1569 2338 182318 42168 4.55656 4.55656 -147.13 -4.55656 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0470634 0.042661 150 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.58 vpr 63.62 MiB -1 -1 0.23 18352 1 0.03 -1 -1 30432 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65152 32 32 331 280 1 175 83 17 17 289 -1 unnamed_device 24.6 MiB 0.85 898 12323 4450 5685 2188 63.6 MiB 0.17 0.00 4.15487 -129.388 -4.15487 4.15487 0.94 0.00105797 0.000982628 0.0753771 0.0700581 32 2324 21 6.65987e+06 240882 554710. 1919.41 1.10 0.207562 0.188581 22834 132086 -1 1950 19 1187 1758 140770 32706 3.37017 3.37017 -131.311 -3.37017 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0407843 0.0369081 129 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.82 vpr 63.53 MiB -1 -1 0.24 18272 1 0.03 -1 -1 30424 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65052 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 24.4 MiB 0.14 992 12022 3497 7943 582 63.5 MiB 0.17 0.00 4.90813 -126.424 -4.90813 4.90813 0.95 0.00108008 0.00100188 0.0640614 0.05954 32 2190 22 6.65987e+06 380340 554710. 1919.41 1.08 0.201461 0.182948 22834 132086 -1 1930 22 1135 1895 116694 29753 3.48705 3.48705 -114.863 -3.48705 0 0 701300. 2426.64 0.22 0.09 0.20 -1 -1 0.22 0.0470713 0.0426121 126 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.16 vpr 63.73 MiB -1 -1 0.28 18368 1 0.03 -1 -1 30524 -1 -1 33 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65264 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 24.8 MiB 0.27 1073 18054 5291 10324 2439 63.7 MiB 0.26 0.00 4.77546 -137.042 -4.77546 4.77546 0.95 0.00120453 0.0011209 0.103 0.0958713 30 2396 22 6.65987e+06 418374 526063. 1820.29 1.13 0.256896 0.234483 22546 126617 -1 1990 18 1149 1866 110044 25399 3.33617 3.33617 -120.849 -3.33617 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0450322 0.0409236 144 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.92 vpr 63.43 MiB -1 -1 0.26 18168 1 0.03 -1 -1 30456 -1 -1 31 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64956 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 24.4 MiB 0.24 995 8073 1820 5530 723 63.4 MiB 0.11 0.00 3.66846 -111.424 -3.66846 3.66846 0.94 0.00105614 0.000979577 0.043521 0.0404152 32 2341 22 6.65987e+06 393018 554710. 1919.41 1.09 0.177776 0.160874 22834 132086 -1 2143 21 1206 2009 139674 32958 2.95611 2.95611 -106.434 -2.95611 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0442812 0.0400597 124 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 7.64 vpr 63.79 MiB -1 -1 0.25 18480 1 0.03 -1 -1 30416 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 25.0 MiB 0.26 1081 14713 4410 8000 2303 63.8 MiB 0.22 0.00 4.85897 -149.763 -4.85897 4.85897 0.95 0.00115038 0.0010705 0.0906142 0.0843325 34 2828 23 6.65987e+06 304272 585099. 2024.56 3.61 0.404571 0.365919 23122 138558 -1 2278 22 1883 2885 191654 46086 3.90511 3.90511 -137.748 -3.90511 0 0 742403. 2568.87 0.23 0.11 0.20 -1 -1 0.23 0.0505385 0.0458156 147 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.45 vpr 63.65 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30300 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65176 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 24.8 MiB 0.38 1057 18773 5404 10789 2580 63.6 MiB 0.26 0.00 4.57498 -141.429 -4.57498 4.57498 0.96 0.00122767 0.00114237 0.106285 0.0988894 26 2700 25 6.65987e+06 431052 477104. 1650.88 1.31 0.27 0.246462 21682 110474 -1 2392 23 1426 2206 162243 38210 3.52617 3.52617 -130.145 -3.52617 0 0 585099. 2024.56 0.20 0.11 0.17 -1 -1 0.20 0.0571313 0.0517278 143 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.68 vpr 62.68 MiB -1 -1 0.23 17932 1 0.03 -1 -1 30404 -1 -1 17 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64188 29 32 269 229 1 130 78 17 17 289 -1 unnamed_device 24.1 MiB 0.13 522 12528 3273 8240 1015 62.7 MiB 0.14 0.00 3.78218 -105.823 -3.78218 3.78218 0.94 0.000901924 0.000838723 0.0705816 0.0656289 32 1507 19 6.65987e+06 215526 554710. 1919.41 1.02 0.18079 0.164025 22834 132086 -1 1359 21 934 1321 111259 27893 2.82097 2.82097 -95.8552 -2.82097 0 0 701300. 2426.64 0.24 0.04 0.19 -1 -1 0.24 0.0169369 0.0151845 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.97 vpr 63.34 MiB -1 -1 0.24 18348 1 0.03 -1 -1 30496 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64864 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 24.3 MiB 0.22 859 7770 1621 5832 317 63.3 MiB 0.12 0.00 4.1395 -122.394 -4.1395 4.1395 0.95 0.00100449 0.000932994 0.0455777 0.0423578 26 2445 25 6.65987e+06 253560 477104. 1650.88 1.28 0.177043 0.159926 21682 110474 -1 1914 23 1359 1777 135581 32870 3.49237 3.49237 -123.242 -3.49237 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0449808 0.0405618 117 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.99 vpr 63.41 MiB -1 -1 0.24 18304 1 0.03 -1 -1 30500 -1 -1 37 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64928 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1006 6364 1268 4717 379 63.4 MiB 0.11 0.00 4.54692 -120.859 -4.54692 4.54692 0.96 0.00107817 0.00100325 0.0329424 0.0306768 26 2562 27 6.65987e+06 469086 477104. 1650.88 1.25 0.179058 0.161876 21682 110474 -1 2203 21 1435 2592 172222 42679 3.86285 3.86285 -127.788 -3.86285 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0453865 0.0411035 129 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.82 vpr 62.99 MiB -1 -1 0.23 18036 1 0.03 -1 -1 30424 -1 -1 21 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64504 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 24.3 MiB 0.20 903 9516 2433 6273 810 63.0 MiB 0.12 0.00 4.23586 -115.879 -4.23586 4.23586 0.95 0.000882086 0.000820227 0.049742 0.0462426 24 2497 47 6.65987e+06 266238 448715. 1552.65 2.18 0.237577 0.21356 21394 104001 -1 1987 21 1231 1581 123633 29782 3.25191 3.25191 -110.87 -3.25191 0 0 554710. 1919.41 0.18 0.08 0.15 -1 -1 0.18 0.0370153 0.0333513 110 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 5.00 vpr 62.91 MiB -1 -1 0.23 18104 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64416 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 24.3 MiB 0.20 840 12980 3474 8543 963 62.9 MiB 0.16 0.00 3.73708 -117.005 -3.73708 3.73708 0.96 0.000936323 0.000870318 0.0735047 0.0683576 32 2024 31 6.65987e+06 202848 554710. 1919.41 1.15 0.205111 0.185955 22834 132086 -1 1880 22 1375 2354 181836 42126 2.76171 2.76171 -107.123 -2.76171 0 0 701300. 2426.64 0.24 0.10 0.19 -1 -1 0.24 0.0409782 0.0369404 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.09 vpr 63.56 MiB -1 -1 0.25 18316 1 0.03 -1 -1 30300 -1 -1 35 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65084 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 24.7 MiB 0.26 932 18098 5272 9901 2925 63.6 MiB 0.23 0.00 4.00372 -119.439 -4.00372 4.00372 0.94 0.00120475 0.00112203 0.098862 0.0919094 32 2135 22 6.65987e+06 443730 554710. 1919.41 1.12 0.250243 0.228167 22834 132086 -1 1814 16 1188 1779 107921 26310 2.91116 2.91116 -107.049 -2.91116 0 0 701300. 2426.64 0.25 0.08 0.19 -1 -1 0.25 0.0401644 0.0364931 135 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.75 vpr 63.00 MiB -1 -1 0.24 18120 1 0.03 -1 -1 30528 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64512 31 32 265 230 1 164 82 17 17 289 -1 unnamed_device 24.3 MiB 0.23 729 5422 1011 4209 202 63.0 MiB 0.08 0.00 3.89447 -116.94 -3.89447 3.89447 0.97 0.000889477 0.000826681 0.0299046 0.0278314 30 1836 22 6.65987e+06 240882 526063. 1820.29 1.02 0.143066 0.128796 22546 126617 -1 1548 20 853 1227 67322 17636 2.92237 2.92237 -104.378 -2.92237 0 0 666494. 2306.21 0.23 0.04 0.20 -1 -1 0.23 0.023756 0.0214125 110 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.12 vpr 63.44 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30136 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64960 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 24.3 MiB 0.32 979 15863 4619 8770 2474 63.4 MiB 0.20 0.00 3.70512 -117.413 -3.70512 3.70512 0.94 0.00112666 0.00104819 0.086145 0.0800737 28 2213 21 6.65987e+06 393018 500653. 1732.36 1.19 0.227111 0.206669 21970 115934 -1 2016 21 1245 2180 139183 32867 2.77191 2.77191 -107.743 -2.77191 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0468843 0.0423996 126 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.59 vpr 63.75 MiB -1 -1 0.25 18188 1 0.03 -1 -1 30388 -1 -1 32 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65284 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.9 MiB 0.78 976 17159 4932 10231 1996 63.8 MiB 0.26 0.01 4.34696 -137.767 -4.34696 4.34696 0.94 0.00342401 0.00318158 0.115539 0.107373 32 2196 21 6.65987e+06 405696 554710. 1919.41 1.09 0.269981 0.246355 22834 132086 -1 1974 20 1313 1835 122362 29906 3.33103 3.33103 -128.763 -3.33103 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0492774 0.0446741 138 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.03 vpr 63.18 MiB -1 -1 0.23 18368 1 0.03 -1 -1 30396 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64696 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 24.2 MiB 0.27 668 7781 1699 5777 305 63.2 MiB 0.11 0.00 3.26384 -99.5047 -3.26384 3.26384 0.94 0.000978725 0.000909004 0.0462259 0.0429297 28 2069 32 6.65987e+06 215526 500653. 1732.36 1.28 0.183992 0.166043 21970 115934 -1 1558 21 963 1473 106251 27557 2.79671 2.79671 -101.953 -2.79671 0 0 612192. 2118.31 0.20 0.08 0.16 -1 -1 0.20 0.0404541 0.0364205 104 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.98 vpr 63.01 MiB -1 -1 0.24 18304 1 0.03 -1 -1 30420 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64520 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 24.2 MiB 0.21 794 6203 1260 4522 421 63.0 MiB 0.10 0.00 4.22769 -129.19 -4.22769 4.22769 0.95 0.000966319 0.000897959 0.0363075 0.0337541 28 2500 31 6.65987e+06 240882 500653. 1732.36 1.26 0.173168 0.156117 21970 115934 -1 1994 20 1412 2076 140192 36201 3.24571 3.24571 -120.314 -3.24571 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.038984 0.0352238 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.76 vpr 63.61 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30300 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65140 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 24.7 MiB 0.20 982 13505 4715 6575 2215 63.6 MiB 0.09 0.00 4.5425 -135.474 -4.5425 4.5425 0.93 0.000392412 0.000360118 0.030135 0.0277008 32 2498 22 6.65987e+06 278916 554710. 1919.41 1.01 0.165163 0.148958 22834 132086 -1 2035 21 1430 1998 129399 32621 3.58971 3.58971 -124.166 -3.58971 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0448614 0.0406189 130 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.06 vpr 63.40 MiB -1 -1 0.25 18296 1 0.03 -1 -1 30268 -1 -1 28 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64920 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 24.3 MiB 0.42 892 10583 2559 7230 794 63.4 MiB 0.15 0.00 4.50014 -117.225 -4.50014 4.50014 0.94 0.00105288 0.000979766 0.0590023 0.0548903 32 2108 22 6.65987e+06 354984 554710. 1919.41 1.05 0.192251 0.174487 22834 132086 -1 1883 18 843 1392 89463 21900 2.92711 2.92711 -103.939 -2.92711 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.039021 0.0353963 121 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.54 vpr 63.21 MiB -1 -1 0.26 18316 1 0.03 -1 -1 30636 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64732 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 24.5 MiB 0.36 1106 7767 1737 5626 404 63.2 MiB 0.14 0.00 5.13083 -160.454 -5.13083 5.13083 0.95 0.00124569 0.00115918 0.0539505 0.050202 28 3142 42 6.65987e+06 291594 500653. 1732.36 1.63 0.256226 0.232212 21970 115934 -1 2389 20 1532 2304 164896 39767 4.19451 4.19451 -149.08 -4.19451 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0501483 0.0455389 153 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.33 vpr 62.79 MiB -1 -1 0.23 17744 1 0.04 -1 -1 30392 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64296 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.1 MiB 0.14 592 6556 1291 4488 777 62.8 MiB 0.07 0.00 3.5592 -94.6383 -3.5592 3.5592 0.67 0.000816677 0.000759438 0.0330813 0.0307624 32 1570 24 6.65987e+06 228204 554710. 1919.41 1.04 0.139793 0.125801 22834 132086 -1 1295 22 774 1228 70734 20250 2.63751 2.63751 -91.7902 -2.63751 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.035709 0.0321014 96 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.46 vpr 63.73 MiB -1 -1 0.24 18280 1 0.03 -1 -1 30384 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65260 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 24.8 MiB 0.41 1151 14083 3602 8814 1667 63.7 MiB 0.21 0.00 4.1637 -141.581 -4.1637 4.1637 0.95 0.00127782 0.00118766 0.0847562 0.0788041 26 2903 23 6.65987e+06 418374 477104. 1650.88 1.42 0.249261 0.226875 21682 110474 -1 2387 22 1725 2577 210321 47332 3.88117 3.88117 -143.74 -3.88117 0 0 585099. 2024.56 0.19 0.12 0.15 -1 -1 0.19 0.0553952 0.0502145 144 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.98 vpr 63.36 MiB -1 -1 0.24 18280 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64884 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 24.4 MiB 0.23 838 12464 4352 6338 1774 63.4 MiB 0.18 0.00 3.54047 -123.895 -3.54047 3.54047 0.96 0.00115885 0.00107632 0.0865728 0.0803865 30 1786 22 6.65987e+06 202848 526063. 1820.29 1.07 0.234546 0.213295 22546 126617 -1 1582 21 1179 1730 94666 24621 2.96597 2.96597 -120.162 -2.96597 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.048814 0.0442163 115 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.12 vpr 63.59 MiB -1 -1 0.24 18260 1 0.03 -1 -1 30452 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65120 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 24.5 MiB 0.35 983 16079 4676 8844 2559 63.6 MiB 0.21 0.00 4.19332 -128.664 -4.19332 4.19332 0.94 0.00115221 0.00107156 0.0891684 0.0828812 32 2260 21 6.65987e+06 393018 554710. 1919.41 1.08 0.23514 0.214219 22834 132086 -1 1942 18 943 1434 87729 22139 3.08831 3.08831 -112.818 -3.08831 0 0 701300. 2426.64 0.22 0.08 0.20 -1 -1 0.22 0.0430392 0.039106 130 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.30 vpr 63.62 MiB -1 -1 0.26 18540 1 0.03 -1 -1 30436 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65144 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 25.1 MiB 0.41 1359 11969 3395 7471 1103 63.6 MiB 0.22 0.00 6.16929 -186.366 -6.16929 6.16929 0.98 0.00129475 0.00120554 0.0814701 0.0758739 30 3007 23 6.65987e+06 316950 526063. 1820.29 1.15 0.245422 0.22376 22546 126617 -1 2536 21 1424 2051 116947 28178 4.60383 4.60383 -161.326 -4.60383 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0550129 0.0500971 168 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.61 vpr 62.66 MiB -1 -1 0.21 17952 1 0.02 -1 -1 30164 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64168 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.9 MiB 0.21 745 9881 2719 6136 1026 62.7 MiB 0.11 0.00 3.31307 -103.296 -3.31307 3.31307 0.95 0.00075847 0.000703514 0.0464863 0.0431363 30 1535 19 6.65987e+06 215526 526063. 1820.29 0.95 0.138746 0.125227 22546 126617 -1 1363 17 578 747 53484 12658 2.16777 2.16777 -90.5027 -2.16777 0 0 666494. 2306.21 0.22 0.05 0.18 -1 -1 0.22 0.0266224 0.0239479 86 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.66 vpr 63.06 MiB -1 -1 0.23 18116 1 0.03 -1 -1 30552 -1 -1 16 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64576 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 24.4 MiB 0.13 602 12196 3365 6955 1876 63.1 MiB 0.15 0.00 3.90063 -110.636 -3.90063 3.90063 0.97 0.000950492 0.000883589 0.0725117 0.0674268 30 1508 16 6.65987e+06 202848 526063. 1820.29 1.00 0.184578 0.167721 22546 126617 -1 1238 16 618 1036 55247 14208 2.74451 2.74451 -98.6794 -2.74451 0 0 666494. 2306.21 0.21 0.06 0.18 -1 -1 0.21 0.0324721 0.0293895 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 5.05 vpr 63.27 MiB -1 -1 0.23 18140 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64784 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 24.3 MiB 0.14 882 9385 2433 6375 577 63.3 MiB 0.13 0.00 3.38183 -110.848 -3.38183 3.38183 0.95 0.000988221 0.000918742 0.0524386 0.0487419 26 2530 23 6.65987e+06 266238 477104. 1650.88 1.39 0.180966 0.163878 21682 110474 -1 2044 20 1225 2206 166820 39609 2.73351 2.73351 -111.403 -2.73351 0 0 585099. 2024.56 0.19 0.09 0.15 -1 -1 0.19 0.039612 0.0357736 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.68 vpr 62.74 MiB -1 -1 0.23 18016 1 0.02 -1 -1 30456 -1 -1 27 25 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64244 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.0 MiB 0.12 451 9966 3308 4450 2208 62.7 MiB 0.09 0.00 3.08755 -72.8894 -3.08755 3.08755 0.95 0.000739273 0.000686403 0.0426921 0.0396686 30 1232 28 6.65987e+06 342306 526063. 1820.29 1.07 0.143755 0.129637 22546 126617 -1 992 23 650 1169 66308 18936 2.49325 2.49325 -69.6329 -2.49325 0 0 666494. 2306.21 0.25 0.06 0.18 -1 -1 0.25 0.0331119 0.029695 89 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.17 vpr 63.58 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30516 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65108 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 24.5 MiB 0.28 1057 14724 4445 8208 2071 63.6 MiB 0.22 0.00 3.92752 -127.443 -3.92752 3.92752 0.95 0.00118397 0.00110031 0.0987008 0.0917432 32 2563 23 6.65987e+06 253560 554710. 1919.41 1.15 0.25218 0.229437 22834 132086 -1 2312 20 1437 2584 180359 42037 3.48625 3.48625 -123.52 -3.48625 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0479013 0.0434129 135 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.93 vpr 63.62 MiB -1 -1 0.27 18284 1 0.03 -1 -1 30460 -1 -1 33 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65152 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 24.7 MiB 0.35 971 8856 1873 6469 514 63.6 MiB 0.14 0.00 4.32075 -139.202 -4.32075 4.32075 0.94 0.00126496 0.00117593 0.0548438 0.0509951 30 2162 23 6.65987e+06 418374 526063. 1820.29 1.09 0.21784 0.197636 22546 126617 -1 1803 19 1072 1681 87685 21633 3.18157 3.18157 -121.035 -3.18157 0 0 666494. 2306.21 0.20 0.09 0.09 -1 -1 0.20 0.0489561 0.0444531 142 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 12.16 vpr 64.12 MiB -1 -1 0.25 18284 1 0.03 -1 -1 30460 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65656 32 32 354 285 1 194 77 17 17 289 -1 unnamed_device 25.3 MiB 2.42 819 9531 4011 5172 348 64.1 MiB 0.13 0.00 5.3162 -155.272 -5.3162 5.3162 0.98 0.00114455 0.00106431 0.0705148 0.0656021 48 2312 24 6.95648e+06 188184 865456. 2994.66 5.79 0.473404 0.426806 28354 207349 -1 1953 25 1868 2729 239166 55342 4.37661 4.37661 -147.674 -4.37661 0 0 1.05005e+06 3633.38 0.31 0.13 0.32 -1 -1 0.31 0.0559867 0.0506869 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.53 vpr 64.19 MiB -1 -1 0.26 18184 1 0.03 -1 -1 30504 -1 -1 15 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65728 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 25.3 MiB 2.60 826 11487 4560 5338 1589 64.2 MiB 0.15 0.00 4.55677 -137.33 -4.55677 4.55677 0.98 0.00115198 0.00107109 0.0847101 0.0788071 38 2679 27 6.95648e+06 217135 678818. 2348.85 3.09 0.336653 0.304668 26626 170182 -1 2168 21 1921 2757 225964 50407 4.58511 4.58511 -153.56 -4.58511 0 0 902133. 3121.57 0.26 0.11 0.25 -1 -1 0.26 0.0489127 0.0443385 80 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 7.17 vpr 64.19 MiB -1 -1 0.23 18268 1 0.03 -1 -1 30456 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65728 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 25.2 MiB 1.30 827 10726 4133 5228 1365 64.2 MiB 0.13 0.00 3.76045 -118.752 -3.76045 3.76045 0.98 0.00100366 0.000933141 0.0666258 0.0619607 38 2885 27 6.95648e+06 217135 678818. 2348.85 2.13 0.239663 0.216742 26626 170182 -1 2175 21 1503 2071 157739 35469 3.99236 3.99236 -128.633 -3.99236 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0422526 0.0381653 76 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 8.62 vpr 64.21 MiB -1 -1 0.24 18276 1 0.03 -1 -1 30348 -1 -1 19 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65756 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 25.3 MiB 0.38 723 14356 5004 7145 2207 64.2 MiB 0.16 0.00 4.16078 -115.782 -4.16078 4.16078 0.98 0.00102245 0.000951016 0.088681 0.0825019 46 1870 23 6.95648e+06 275038 828058. 2865.25 4.35 0.409621 0.369745 28066 200906 -1 1356 21 1232 2050 103882 28875 3.70572 3.70572 -115.709 -3.70572 0 0 1.01997e+06 3529.29 0.30 0.08 0.30 -1 -1 0.30 0.0430796 0.038969 71 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 9.59 vpr 64.22 MiB -1 -1 0.24 18272 1 0.03 -1 -1 30676 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65760 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 25.2 MiB 0.81 725 12292 5111 6719 462 64.2 MiB 0.15 0.00 4.31509 -131.389 -4.31509 4.31509 0.98 0.0011194 0.00104127 0.0833695 0.0775588 46 2462 26 6.95648e+06 231611 828058. 2865.25 4.92 0.402313 0.362267 28066 200906 -1 1903 20 1464 2461 174508 41717 4.23256 4.23256 -136.198 -4.23256 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0449896 0.0408093 73 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 10.25 vpr 64.65 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30336 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66200 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 25.6 MiB 1.04 780 12919 4595 6436 1888 64.6 MiB 0.17 0.00 3.0405 -114.196 -3.0405 3.0405 0.99 0.00118579 0.00110262 0.0852176 0.0792425 42 2418 44 6.95648e+06 303989 744469. 2576.02 5.30 0.521419 0.470452 27202 183097 -1 1969 23 1541 2365 206486 45961 3.42207 3.42207 -123.01 -3.42207 0 0 949917. 3286.91 0.28 0.11 0.27 -1 -1 0.28 0.0530408 0.0480351 79 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.78 vpr 63.85 MiB -1 -1 0.23 18192 1 0.03 -1 -1 30772 -1 -1 14 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65380 27 32 259 221 1 127 73 17 17 289 -1 unnamed_device 25.3 MiB 4.86 438 12233 4755 5541 1937 63.8 MiB 0.13 0.00 3.56899 -93.4053 -3.56899 3.56899 0.98 0.000870963 0.000809742 0.0728886 0.0678205 36 1734 27 6.95648e+06 202660 648988. 2245.63 2.27 0.227349 0.205507 26050 158493 -1 1268 20 969 1496 120141 29123 3.07697 3.07697 -99.2712 -3.07697 0 0 828058. 2865.25 0.25 0.07 0.22 -1 -1 0.25 0.0352458 0.0317459 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 6.91 vpr 63.73 MiB -1 -1 0.24 17848 1 0.03 -1 -1 30344 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65256 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.1 MiB 0.44 651 12373 4268 5547 2558 63.7 MiB 0.12 0.00 2.95842 -91.5041 -2.95842 2.95842 0.98 0.000947229 0.000880201 0.0628277 0.0583883 46 2044 43 6.95648e+06 361892 828058. 2865.25 2.64 0.291576 0.262572 28066 200906 -1 1528 22 1102 1788 138745 35956 2.91152 2.91152 -96.8077 -2.91152 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.041619 0.0375666 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 8.47 vpr 63.86 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30424 -1 -1 11 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65396 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 25.1 MiB 1.95 588 11234 4630 5959 645 63.9 MiB 0.13 0.00 3.43049 -116.456 -3.43049 3.43049 0.98 0.00101263 0.000940615 0.0760505 0.0706675 44 2828 41 6.95648e+06 159232 787024. 2723.27 2.62 0.290671 0.262191 27778 195446 -1 1642 19 1227 1690 118511 30620 3.85306 3.85306 -127.819 -3.85306 0 0 997811. 3452.63 0.30 0.08 0.29 -1 -1 0.30 0.0397274 0.0359324 66 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 9.69 vpr 63.86 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30148 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65392 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 25.3 MiB 1.20 622 12629 5382 6987 260 63.9 MiB 0.15 0.00 3.30928 -114.751 -3.30928 3.30928 0.98 0.000989282 0.000918753 0.0834837 0.0776003 40 1807 30 6.95648e+06 144757 706193. 2443.58 4.68 0.406299 0.365822 26914 176310 -1 1464 22 1356 1917 139980 32902 3.17137 3.17137 -120.238 -3.17137 0 0 926341. 3205.33 0.27 0.09 0.26 -1 -1 0.27 0.0433068 0.0391163 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 9.97 vpr 63.73 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30544 -1 -1 12 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65264 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 25.1 MiB 1.72 499 7824 2588 3808 1428 63.7 MiB 0.10 0.00 3.43453 -102.152 -3.43453 3.43453 0.98 0.000977323 0.000907635 0.0543338 0.0504905 40 1618 37 6.95648e+06 173708 706193. 2443.58 4.51 0.357191 0.320162 26914 176310 -1 1417 19 1045 1454 130735 30950 3.38122 3.38122 -116.095 -3.38122 0 0 926341. 3205.33 0.27 0.08 0.26 -1 -1 0.27 0.0376065 0.0339529 55 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 14.19 vpr 63.66 MiB -1 -1 0.23 17980 1 0.03 -1 -1 30200 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65192 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 25.1 MiB 1.47 641 8754 2760 4259 1735 63.7 MiB 0.12 0.00 3.28034 -110.937 -3.28034 3.28034 0.98 0.000929143 0.00086365 0.0663024 0.061677 50 1507 34 6.95648e+06 144757 902133. 3121.57 8.79 0.512552 0.458433 28642 213929 -1 1231 24 1238 1641 103271 29175 2.89887 2.89887 -107.123 -2.89887 0 0 1.08113e+06 3740.92 0.34 0.09 0.32 -1 -1 0.34 0.0440629 0.0397279 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.64 vpr 64.41 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30476 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65956 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 25.6 MiB 1.85 907 9881 2634 5845 1402 64.4 MiB 0.14 0.00 3.82352 -130.458 -3.82352 3.82352 0.98 0.00113697 0.00105834 0.0701728 0.0651979 44 2612 27 6.95648e+06 217135 787024. 2723.27 4.90 0.448431 0.404459 27778 195446 -1 2135 22 1900 2804 234181 49013 3.48457 3.48457 -131.218 -3.48457 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0497401 0.0451075 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.62 vpr 64.20 MiB -1 -1 0.26 18368 1 0.03 -1 -1 30512 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65740 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 25.2 MiB 0.85 823 10481 3378 5508 1595 64.2 MiB 0.14 0.00 4.48063 -137.796 -4.48063 4.48063 0.98 0.00116147 0.00107991 0.0678881 0.0631609 38 2569 28 6.95648e+06 318465 678818. 2348.85 2.88 0.324337 0.292993 26626 170182 -1 2092 20 1684 2459 206291 45042 4.00306 4.00306 -136.732 -4.00306 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0466527 0.0422645 75 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.39 vpr 63.43 MiB -1 -1 0.24 18156 1 0.03 -1 -1 30636 -1 -1 13 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64956 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 24.7 MiB 1.21 466 9684 3087 4807 1790 63.4 MiB 0.10 0.00 3.10275 -86.0216 -3.10275 3.10275 0.98 0.000845987 0.000785911 0.0554639 0.051572 48 1348 26 6.95648e+06 188184 865456. 2994.66 2.38 0.238511 0.214414 28354 207349 -1 1067 21 897 1366 97582 26982 2.90352 2.90352 -92.611 -2.90352 0 0 1.05005e+06 3633.38 0.31 0.07 0.31 -1 -1 0.31 0.0355312 0.0319371 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 10.74 vpr 64.24 MiB -1 -1 0.28 18252 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65780 32 32 370 297 1 181 81 17 17 289 -1 unnamed_device 25.3 MiB 1.08 775 13906 5829 7750 327 64.2 MiB 0.18 0.00 3.1265 -114.361 -3.1265 3.1265 0.98 0.00118061 0.00109688 0.0973417 0.0904834 48 2169 23 6.95648e+06 246087 865456. 2994.66 5.65 0.495477 0.446667 28354 207349 -1 1904 22 1492 2369 206680 46630 3.37377 3.37377 -125.687 -3.37377 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0514863 0.0466092 77 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 8.47 vpr 64.09 MiB -1 -1 0.26 18304 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65624 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 25.1 MiB 1.94 747 12528 4608 6627 1293 64.1 MiB 0.17 0.00 4.17585 -130.558 -4.17585 4.17585 0.98 0.00110578 0.00102763 0.0874713 0.0814216 46 2216 35 6.95648e+06 202660 828058. 2865.25 2.57 0.346919 0.314162 28066 200906 -1 1629 20 1562 2175 152931 36033 3.37376 3.37376 -122.324 -3.37376 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0453426 0.0411272 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 9.86 vpr 64.16 MiB -1 -1 0.24 18468 1 0.03 -1 -1 30416 -1 -1 9 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65700 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 25.3 MiB 0.85 713 11777 5007 6577 193 64.2 MiB 0.15 0.00 2.30911 -96.9749 -2.30911 2.30911 0.98 0.00103099 0.000957631 0.0831899 0.0773135 44 1952 31 6.95648e+06 130281 787024. 2723.27 5.12 0.429682 0.386697 27778 195446 -1 1613 20 1201 1782 148921 31744 2.32718 2.32718 -100.68 -2.32718 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.0416371 0.0376054 57 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.29 vpr 63.48 MiB -1 -1 0.22 18020 1 0.02 -1 -1 30352 -1 -1 10 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65000 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 24.9 MiB 0.34 461 10800 4629 5825 346 63.5 MiB 0.11 0.00 2.11601 -78.0433 -2.11601 2.11601 0.98 0.000757319 0.000702312 0.0587743 0.0545393 36 1665 43 6.95648e+06 144757 648988. 2245.63 2.30 0.243573 0.218254 26050 158493 -1 1283 21 782 1028 98649 22790 2.09668 2.09668 -85.8408 -2.09668 0 0 828058. 2865.25 0.25 0.07 0.23 -1 -1 0.25 0.0314097 0.0281469 44 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 15.03 vpr 63.93 MiB -1 -1 0.24 18264 1 0.03 -1 -1 30580 -1 -1 12 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65460 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 25.3 MiB 2.59 809 7343 1906 5018 419 63.9 MiB 0.10 0.00 4.085 -135.532 -4.085 4.085 0.98 0.000966345 0.000898354 0.0477086 0.0443785 38 2385 41 6.95648e+06 173708 678818. 2348.85 8.61 0.484897 0.434214 26626 170182 -1 1898 21 1385 1899 185682 45517 3.71872 3.71872 -139.612 -3.71872 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0412203 0.037257 69 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.23 vpr 64.25 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30552 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65796 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 25.2 MiB 0.67 652 8868 3175 4368 1325 64.3 MiB 0.11 0.00 3.70824 -121.183 -3.70824 3.70824 0.98 0.00114048 0.00106059 0.0579478 0.0539511 46 2245 37 6.95648e+06 289514 828058. 2865.25 2.64 0.281701 0.254583 28066 200906 -1 1694 27 1863 2599 211456 57810 4.38716 4.38716 -134.093 -4.38716 0 0 1.01997e+06 3529.29 0.30 0.13 0.30 -1 -1 0.30 0.0582073 0.0526263 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 11.11 vpr 64.50 MiB -1 -1 0.26 18344 1 0.03 -1 -1 30464 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66044 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 25.5 MiB 1.47 829 13358 4003 7025 2330 64.5 MiB 0.18 0.00 4.7576 -136.611 -4.7576 4.7576 0.98 0.00118115 0.00109861 0.0986868 0.0918112 46 2724 26 6.95648e+06 202660 828058. 2865.25 5.69 0.484408 0.437753 28066 200906 -1 1944 23 1712 2613 214288 47245 3.86712 3.86712 -133.306 -3.86712 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0538056 0.0487683 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.24 vpr 63.32 MiB -1 -1 0.22 18096 1 0.03 -1 -1 30676 -1 -1 13 26 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64840 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 24.7 MiB 0.84 312 9123 3841 4664 618 63.3 MiB 0.08 0.00 2.23646 -64.6952 -2.23646 2.23646 0.98 0.000643012 0.000595559 0.0420337 0.0389408 36 1139 37 6.95648e+06 188184 648988. 2245.63 1.85 0.171621 0.15363 26050 158493 -1 813 15 560 691 44725 12926 2.43808 2.43808 -75.2433 -2.43808 0 0 828058. 2865.25 0.25 0.04 0.23 -1 -1 0.25 0.0207652 0.0187246 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 14.45 vpr 64.02 MiB -1 -1 0.23 17800 1 0.03 -1 -1 30400 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65552 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 25.4 MiB 0.75 670 9543 3158 4645 1740 64.0 MiB 0.12 0.00 4.56626 -117.316 -4.56626 4.56626 0.98 0.000987454 0.000918695 0.0590827 0.0549993 40 2553 42 6.95648e+06 217135 706193. 2443.58 9.81 0.506485 0.454753 26914 176310 -1 1902 33 1716 2834 347020 106811 3.95226 3.95226 -129.671 -3.95226 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0612032 0.0551242 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.75 vpr 63.27 MiB -1 -1 0.20 17568 1 0.02 -1 -1 30296 -1 -1 8 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64788 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.8 MiB 0.28 406 9906 4161 5525 220 63.3 MiB 0.08 0.00 2.18146 -70.2596 -2.18146 2.18146 1.00 0.00062083 0.000574046 0.0432045 0.0399738 36 1325 28 6.95648e+06 115805 648988. 2245.63 1.92 0.179306 0.160295 26050 158493 -1 1012 15 611 655 65243 17708 1.99318 1.99318 -75.0946 -1.99318 0 0 828058. 2865.25 0.25 0.05 0.22 -1 -1 0.25 0.0203456 0.018267 42 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 9.67 vpr 64.17 MiB -1 -1 0.23 17928 1 0.03 -1 -1 30220 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65708 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 25.3 MiB 0.96 867 11740 4903 6637 200 64.2 MiB 0.14 0.00 4.50901 -127.255 -4.50901 4.50901 0.99 0.00101108 0.00094003 0.0736428 0.068529 38 2466 24 6.95648e+06 217135 678818. 2348.85 4.89 0.403277 0.363119 26626 170182 -1 2036 20 1287 2042 159265 33888 3.83266 3.83266 -127.137 -3.83266 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0411511 0.0372697 68 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.46 vpr 63.89 MiB -1 -1 0.24 17852 1 0.03 -1 -1 30556 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65428 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.2 MiB 0.54 712 11989 4478 6107 1404 63.9 MiB 0.14 0.00 3.03146 -100.511 -3.03146 3.03146 0.98 0.00103228 0.000959981 0.0691571 0.0643276 46 2104 28 6.95648e+06 303989 828058. 2865.25 3.05 0.297435 0.268959 28066 200906 -1 1649 22 1228 1937 136515 34224 3.19327 3.19327 -108.899 -3.19327 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0448956 0.0406365 74 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.55 vpr 64.15 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30484 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65688 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 25.2 MiB 0.88 860 15023 4398 9616 1009 64.1 MiB 0.19 0.00 4.41913 -133.119 -4.41913 4.41913 1.00 0.00109339 0.00101572 0.0962762 0.0894952 38 2675 29 6.95648e+06 275038 678818. 2348.85 3.87 0.342777 0.310097 26626 170182 -1 2090 18 1162 1788 136504 29780 3.94527 3.94527 -132.769 -3.94527 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0408952 0.0370819 72 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 9.71 vpr 63.63 MiB -1 -1 0.23 18100 1 0.03 -1 -1 30268 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65160 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 24.9 MiB 0.81 767 12319 3787 7504 1028 63.6 MiB 0.14 0.00 3.08875 -100.244 -3.08875 3.08875 0.98 0.000951751 0.000884686 0.0780858 0.0726049 40 1893 20 6.95648e+06 144757 706193. 2443.58 5.12 0.440632 0.395655 26914 176310 -1 1792 23 1097 1710 166914 38434 3.12632 3.12632 -114.145 -3.12632 0 0 926341. 3205.33 0.27 0.10 0.28 -1 -1 0.27 0.042961 0.0386765 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 9.19 vpr 63.55 MiB -1 -1 0.23 18032 1 0.03 -1 -1 30424 -1 -1 18 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65080 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 24.8 MiB 0.28 475 11260 3973 5458 1829 63.6 MiB 0.12 0.00 3.16808 -92.8265 -3.16808 3.16808 1.00 0.000881818 0.000819254 0.0607339 0.0564376 46 1349 29 6.95648e+06 260562 828058. 2865.25 5.06 0.340878 0.305595 28066 200906 -1 1066 19 814 1120 81987 21482 2.68092 2.68092 -92.1721 -2.68092 0 0 1.01997e+06 3529.29 0.30 0.07 0.29 -1 -1 0.30 0.0340951 0.0307012 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 9.56 vpr 63.50 MiB -1 -1 0.24 18104 1 0.03 -1 -1 30244 -1 -1 16 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65020 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 24.7 MiB 0.65 455 10956 4555 5743 658 63.5 MiB 0.11 0.00 2.9612 -88.8951 -2.9612 2.9612 0.95 0.000874169 0.000812008 0.0625588 0.0581596 44 1829 41 6.95648e+06 231611 787024. 2723.27 5.10 0.3679 0.329673 27778 195446 -1 1317 26 1057 1658 144125 49878 3.22762 3.22762 -101.532 -3.22762 0 0 997811. 3452.63 0.30 0.10 0.30 -1 -1 0.30 0.0439617 0.0394998 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 7.50 vpr 63.68 MiB -1 -1 0.23 17864 1 0.03 -1 -1 30368 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65212 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.8 MiB 0.48 491 8909 2535 4509 1865 63.7 MiB 0.10 0.00 3.37459 -106.336 -3.37459 3.37459 0.99 0.000894614 0.000832163 0.0546102 0.0508882 46 1646 45 6.95648e+06 144757 828058. 2865.25 3.18 0.275722 0.247944 28066 200906 -1 1141 22 1107 1576 106059 28122 2.88972 2.88972 -102.841 -2.88972 0 0 1.01997e+06 3529.29 0.30 0.08 0.29 -1 -1 0.30 0.0388896 0.0350744 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 6.87 vpr 63.53 MiB -1 -1 0.24 18100 1 0.03 -1 -1 30320 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65052 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 24.6 MiB 0.40 517 10050 3590 5083 1377 63.5 MiB 0.11 0.00 3.16008 -98.5956 -3.16008 3.16008 0.98 0.000915616 0.000849852 0.0545475 0.0505703 46 1879 26 6.95648e+06 275038 828058. 2865.25 2.66 0.252447 0.227046 28066 200906 -1 1311 24 1130 1624 115338 29379 2.86152 2.86152 -102.235 -2.86152 0 0 1.01997e+06 3529.29 0.30 0.09 0.30 -1 -1 0.30 0.0428456 0.0385418 61 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 10.30 vpr 63.73 MiB -1 -1 0.24 18116 1 0.02 -1 -1 30572 -1 -1 12 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65256 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 25.1 MiB 1.17 526 12233 5235 6327 671 63.7 MiB 0.14 0.00 2.76945 -94.9274 -2.76945 2.76945 0.98 0.000964941 0.000898092 0.0793919 0.0738056 48 1557 23 6.95648e+06 173708 865456. 2994.66 5.31 0.395946 0.355799 28354 207349 -1 1299 21 1035 1408 98116 25683 2.60472 2.60472 -98.6005 -2.60472 0 0 1.05005e+06 3633.38 0.31 0.08 0.31 -1 -1 0.31 0.0395492 0.035646 61 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 6.96 vpr 64.36 MiB -1 -1 0.25 18260 1 0.03 -1 -1 30524 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65900 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 25.6 MiB 0.75 844 13477 4316 6348 2813 64.4 MiB 0.18 0.00 4.03548 -120.669 -4.03548 4.03548 0.98 0.00122054 0.00113586 0.0918587 0.0855516 44 2598 20 6.95648e+06 303989 787024. 2723.27 2.30 0.288847 0.26277 27778 195446 -1 2056 21 1471 2439 159846 37876 3.97241 3.97241 -122.126 -3.97241 0 0 997811. 3452.63 0.29 0.10 0.29 -1 -1 0.29 0.0513093 0.0466167 84 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 10.35 vpr 64.22 MiB -1 -1 0.26 18308 1 0.03 -1 -1 30360 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65760 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 25.1 MiB 1.08 735 14323 5482 6766 2075 64.2 MiB 0.18 0.00 3.31218 -116.99 -3.31218 3.31218 0.98 0.00124602 0.00115849 0.0953991 0.0885492 42 2518 29 6.95648e+06 347416 744469. 2576.02 5.34 0.542453 0.489661 27202 183097 -1 2002 20 1750 2444 193813 44730 3.25012 3.25012 -132.628 -3.25012 0 0 949917. 3286.91 0.28 0.11 0.27 -1 -1 0.28 0.0500048 0.0453737 82 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 11.61 vpr 63.60 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30292 -1 -1 11 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65124 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 25.0 MiB 1.86 758 6739 2921 3632 186 63.6 MiB 0.08 0.00 3.81132 -121.219 -3.81132 3.81132 0.98 0.00093712 0.000871207 0.0428781 0.0398783 48 1753 28 6.95648e+06 159232 865456. 2994.66 5.78 0.376923 0.337582 28354 207349 -1 1624 22 1322 1907 209129 47153 3.06996 3.06996 -114.389 -3.06996 0 0 1.05005e+06 3633.38 0.31 0.10 0.33 -1 -1 0.31 0.0412911 0.0372479 63 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 9.32 vpr 64.23 MiB -1 -1 0.23 18328 1 0.03 -1 -1 30540 -1 -1 16 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65772 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 25.2 MiB 0.89 729 11233 3391 5862 1980 64.2 MiB 0.15 0.00 3.75886 -121.815 -3.75886 3.75886 0.99 0.00117899 0.00109638 0.0816995 0.0760131 40 2238 25 6.95648e+06 231611 706193. 2443.58 4.54 0.394589 0.355283 26914 176310 -1 1828 21 1519 2291 185973 43285 3.59307 3.59307 -124.326 -3.59307 0 0 926341. 3205.33 0.27 0.10 0.28 -1 -1 0.27 0.0499089 0.0452448 76 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 11.24 vpr 64.41 MiB -1 -1 0.27 18252 1 0.03 -1 -1 30404 -1 -1 16 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65956 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 25.5 MiB 2.30 959 13092 5556 7054 482 64.4 MiB 0.18 0.00 5.39406 -167.083 -5.39406 5.39406 0.99 0.00119546 0.00111129 0.096084 0.0893569 48 3360 35 6.95648e+06 231611 865456. 2994.66 4.86 0.377795 0.342335 28354 207349 -1 2438 21 2346 3373 335591 72839 5.3153 5.3153 -179.412 -5.3153 0 0 1.05005e+06 3633.38 0.31 0.14 0.32 -1 -1 0.31 0.0511355 0.0464098 97 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 11.41 vpr 64.38 MiB -1 -1 0.26 18232 1 0.03 -1 -1 30508 -1 -1 16 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65928 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 25.5 MiB 2.42 981 12754 4946 6110 1698 64.4 MiB 0.17 0.00 4.59684 -149.382 -4.59684 4.59684 1.00 0.00121405 0.00112902 0.0954045 0.0887898 36 3255 40 6.95648e+06 231611 648988. 2245.63 5.12 0.392388 0.355613 26050 158493 -1 2544 20 1805 2628 249977 53217 4.58996 4.58996 -162.436 -4.58996 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0494612 0.0449078 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 11.55 vpr 64.18 MiB -1 -1 0.26 18456 1 0.03 -1 -1 30592 -1 -1 22 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65724 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 25.4 MiB 1.36 767 14407 6066 7718 623 64.2 MiB 0.17 0.00 4.14668 -131.95 -4.14668 4.14668 0.98 0.00114111 0.00106091 0.0918522 0.0854651 54 2141 24 6.95648e+06 318465 949917. 3286.91 6.16 0.44682 0.403627 29506 232905 -1 1822 21 1401 2038 171527 39933 3.83302 3.83302 -127.366 -3.83302 0 0 1.17392e+06 4061.99 0.34 0.10 0.36 -1 -1 0.34 0.0477788 0.0432817 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 16.02 vpr 63.67 MiB -1 -1 0.24 18272 1 0.03 -1 -1 30632 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65200 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 25.0 MiB 1.22 753 10868 4524 5937 407 63.7 MiB 0.13 0.00 4.07128 -116.522 -4.07128 4.07128 0.98 0.000976978 0.000907526 0.066912 0.0621395 40 2646 31 6.95648e+06 202660 706193. 2443.58 10.97 0.505421 0.453048 26914 176310 -1 1990 22 1486 2052 173196 43116 3.93952 3.93952 -123.712 -3.93952 0 0 926341. 3205.33 0.29 0.10 0.28 -1 -1 0.29 0.0428515 0.0387648 71 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 9.82 vpr 64.50 MiB -1 -1 0.28 18596 1 0.03 -1 -1 30520 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66052 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 25.6 MiB 1.63 869 9725 2505 5543 1677 64.5 MiB 0.15 0.00 4.71507 -153.199 -4.71507 4.71507 0.98 0.00143944 0.00134052 0.0788646 0.073451 56 2593 26 6.95648e+06 318465 973134. 3367.25 4.02 0.489759 0.442759 29794 239141 -1 2037 22 1990 3012 233539 54964 4.41131 4.41131 -151.185 -4.41131 0 0 1.19926e+06 4149.71 0.34 0.14 0.37 -1 -1 0.34 0.0660893 0.0599678 93 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 8.90 vpr 63.65 MiB -1 -1 0.23 17984 1 0.02 -1 -1 30428 -1 -1 15 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65176 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 24.9 MiB 0.79 547 8876 3348 4442 1086 63.6 MiB 0.10 0.00 3.29541 -98.5818 -3.29541 3.29541 0.98 0.000880815 0.000818117 0.0502204 0.0466566 38 1539 23 6.95648e+06 217135 678818. 2348.85 4.46 0.366343 0.327717 26626 170182 -1 1219 21 925 1378 85952 21311 2.91457 2.91457 -98.1765 -2.91457 0 0 902133. 3121.57 0.26 0.07 0.24 -1 -1 0.26 0.0369672 0.0332798 56 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 8.76 vpr 64.27 MiB -1 -1 0.25 18408 1 0.03 -1 -1 30264 -1 -1 15 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65812 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 25.2 MiB 1.50 909 14520 6637 7462 421 64.3 MiB 0.18 0.00 4.79642 -150.982 -4.79642 4.79642 0.98 0.00111164 0.0010343 0.100464 0.0935125 48 2595 45 6.95648e+06 217135 865456. 2994.66 3.28 0.381727 0.345984 28354 207349 -1 2073 19 1555 2271 194583 42080 4.25006 4.25006 -144.636 -4.25006 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.043686 0.0396945 84 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 7.90 vpr 64.16 MiB -1 -1 0.24 18472 1 0.03 -1 -1 30428 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65696 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 25.2 MiB 1.04 767 9181 3812 5049 320 64.2 MiB 0.12 0.00 3.22585 -111.884 -3.22585 3.22585 0.99 0.00113451 0.00105501 0.06299 0.0584814 48 2197 24 6.95648e+06 246087 865456. 2994.66 2.96 0.311141 0.28099 28354 207349 -1 1873 21 1512 2433 188398 45116 3.06517 3.06517 -117.579 -3.06517 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.0473788 0.0428769 73 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 16.68 vpr 63.84 MiB -1 -1 0.22 17844 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65376 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 25.2 MiB 1.06 689 10744 4411 5919 414 63.8 MiB 0.12 0.00 4.49648 -123.127 -4.49648 4.49648 0.98 0.00100738 0.000936683 0.0656403 0.0610419 40 2776 34 6.95648e+06 231611 706193. 2443.58 11.85 0.540035 0.48508 26914 176310 -1 2150 22 1459 2444 231970 62058 5.10112 5.10112 -152.308 -5.10112 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0445356 0.040273 68 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 8.97 vpr 64.32 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65860 32 32 353 287 1 185 79 17 17 289 -1 unnamed_device 25.5 MiB 2.38 764 10219 4191 5614 414 64.3 MiB 0.13 0.00 4.42645 -137.171 -4.42645 4.42645 0.98 0.00113627 0.00105582 0.0722094 0.0671687 46 2288 23 6.95648e+06 217135 828058. 2865.25 2.69 0.31357 0.283485 28066 200906 -1 1666 20 1329 1829 116395 29020 3.50086 3.50086 -124.817 -3.50086 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0462353 0.041966 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 11.63 vpr 64.28 MiB -1 -1 0.25 18276 1 0.03 -1 -1 30468 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65824 32 32 361 291 1 178 81 17 17 289 -1 unnamed_device 25.3 MiB 1.76 705 10581 4329 5826 426 64.3 MiB 0.13 0.00 3.235 -113.751 -3.235 3.235 0.98 0.00116313 0.00108063 0.0741382 0.0689938 48 2341 22 6.95648e+06 246087 865456. 2994.66 5.89 0.52058 0.469122 28354 207349 -1 1861 19 1448 2207 164876 42407 3.01797 3.01797 -117.586 -3.01797 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.0451129 0.0409408 75 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 7.42 vpr 64.29 MiB -1 -1 0.25 18188 1 0.03 -1 -1 30360 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65832 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 25.3 MiB 1.00 869 14562 4589 7172 2801 64.3 MiB 0.18 0.00 4.34419 -139.535 -4.34419 4.34419 0.98 0.00121322 0.00112767 0.0916209 0.0851774 44 2589 27 6.95648e+06 376368 787024. 2723.27 2.51 0.357271 0.323866 27778 195446 -1 1969 20 1343 1893 142325 32126 3.85787 3.85787 -136.329 -3.85787 0 0 997811. 3452.63 0.29 0.10 0.29 -1 -1 0.29 0.0490341 0.0445036 83 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 7.92 vpr 64.21 MiB -1 -1 0.23 17896 1 0.03 -1 -1 30364 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65756 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 25.3 MiB 1.00 657 12749 3718 6154 2877 64.2 MiB 0.13 0.00 4.33949 -116.542 -4.33949 4.33949 0.98 0.00102451 0.000952633 0.0719432 0.0668797 46 2061 33 6.95648e+06 318465 828058. 2865.25 3.05 0.30637 0.276819 28066 200906 -1 1582 19 1195 1848 119420 31248 3.91596 3.91596 -122.905 -3.91596 0 0 1.01997e+06 3529.29 0.30 0.08 0.29 -1 -1 0.30 0.0397907 0.0360649 69 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 11.64 vpr 64.23 MiB -1 -1 0.24 18428 1 0.03 -1 -1 30324 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65776 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 25.1 MiB 2.26 759 11487 3081 6173 2233 64.2 MiB 0.13 0.00 4.15778 -124.964 -4.15778 4.15778 0.97 0.00105791 0.000983924 0.0776092 0.072201 48 1795 46 6.95648e+06 188184 865456. 2994.66 5.68 0.485267 0.437149 28354 207349 -1 1472 24 1589 2132 171001 49634 4.22312 4.22312 -129.339 -4.22312 0 0 1.05005e+06 3633.38 0.31 0.11 0.17 -1 -1 0.31 0.0508204 0.0460001 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 12.02 vpr 64.50 MiB -1 -1 0.27 18260 1 0.03 -1 -1 30360 -1 -1 15 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66052 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 25.4 MiB 1.48 818 11200 4390 5140 1670 64.5 MiB 0.15 0.00 4.55157 -142.077 -4.55157 4.55157 0.98 0.0011851 0.00110151 0.0833726 0.077571 56 2557 27 6.95648e+06 217135 973134. 3367.25 6.41 0.523433 0.47202 29794 239141 -1 2164 24 1848 2988 282569 75697 4.49781 4.49781 -147.949 -4.49781 0 0 1.19926e+06 4149.71 0.34 0.14 0.37 -1 -1 0.34 0.0559019 0.0506429 85 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 19.23 vpr 64.29 MiB -1 -1 0.26 18420 1 0.03 -1 -1 30332 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65832 32 32 387 315 1 183 77 17 17 289 -1 unnamed_device 25.3 MiB 1.39 875 12791 5461 6994 336 64.3 MiB 0.18 0.00 4.05245 -131.841 -4.05245 4.05245 0.98 0.00121364 0.00112718 0.0991592 0.0922093 40 2655 21 6.95648e+06 188184 706193. 2443.58 13.83 0.608771 0.54879 26914 176310 -1 2515 28 1924 3189 334599 81730 4.27002 4.27002 -148.388 -4.27002 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0653918 0.0591944 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 13.01 vpr 63.43 MiB -1 -1 0.24 18000 1 0.03 -1 -1 30512 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64956 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 24.7 MiB 0.31 503 11474 3656 5616 2202 63.4 MiB 0.11 0.00 3.14908 -92.8603 -3.14908 3.14908 0.99 0.000861041 0.000799009 0.0580113 0.0538724 46 1673 34 6.95648e+06 260562 828058. 2865.25 8.82 0.467368 0.417431 28066 200906 -1 1182 22 896 1369 101850 27025 2.80837 2.80837 -95.2815 -2.80837 0 0 1.01997e+06 3529.29 0.30 0.08 0.30 -1 -1 0.30 0.0375158 0.033751 57 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 16.73 vpr 64.07 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30344 -1 -1 12 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65608 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 25.1 MiB 1.47 711 11916 4904 6407 605 64.1 MiB 0.15 0.00 3.71155 -132.668 -3.71155 3.71155 0.98 0.00108296 0.00100563 0.083748 0.0778428 40 2587 37 6.95648e+06 173708 706193. 2443.58 11.47 0.576111 0.517578 26914 176310 -1 1964 19 1577 2226 208434 47543 3.77802 3.77802 -145.499 -3.77802 0 0 926341. 3205.33 0.27 0.10 0.26 -1 -1 0.27 0.0421499 0.0381539 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.00 vpr 64.60 MiB -1 -1 0.26 18176 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66152 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 25.7 MiB 1.39 1043 13668 5813 7551 304 64.6 MiB 0.22 0.00 4.86362 -154.705 -4.86362 4.86362 1.02 0.00126903 0.00118052 0.114724 0.106786 44 3566 45 6.95648e+06 231611 787024. 2723.27 3.45 0.432468 0.392792 27778 195446 -1 2589 31 2596 3965 397208 118281 4.93386 4.93386 -159.995 -4.93386 0 0 997811. 3452.63 0.30 0.20 0.29 -1 -1 0.30 0.0754493 0.0684841 95 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.99 vpr 64.33 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65872 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 25.3 MiB 0.93 1030 10056 3475 5590 991 64.3 MiB 0.13 0.00 4.33951 -148.581 -4.33951 4.33951 0.97 0.00111245 0.00103642 0.0679437 0.0632284 36 2548 40 6.95648e+06 246087 648988. 2245.63 2.33 0.285349 0.258344 26050 158493 -1 2160 21 1436 1934 167163 35548 3.47286 3.47286 -142.474 -3.47286 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0472198 0.0428211 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 7.78 vpr 63.77 MiB -1 -1 0.23 18024 1 0.03 -1 -1 30412 -1 -1 20 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65304 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 25.2 MiB 0.54 522 12008 3926 6070 2012 63.8 MiB 0.13 0.00 2.944 -97.1669 -2.944 2.944 1.00 0.000949348 0.000874744 0.0651688 0.0604645 38 1929 31 6.95648e+06 289514 678818. 2348.85 3.48 0.275191 0.247791 26626 170182 -1 1358 23 1128 1654 112189 27795 3.00562 3.00562 -103.401 -3.00562 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0421414 0.0379579 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 10.00 vpr 64.57 MiB -1 -1 0.28 18616 1 0.03 -1 -1 30444 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66124 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 25.4 MiB 1.89 1133 14782 6411 8010 361 64.6 MiB 0.22 0.00 5.84939 -174.319 -5.84939 5.84939 0.98 0.00137399 0.0012792 0.124902 0.116351 44 3465 35 6.95648e+06 217135 787024. 2723.27 4.00 0.422768 0.384107 27778 195446 -1 2674 24 2360 3463 331450 77776 5.15535 5.15535 -176.016 -5.15535 0 0 997811. 3452.63 0.29 0.16 0.28 -1 -1 0.29 0.0649863 0.0589585 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.05 vpr 64.09 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30456 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65628 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 25.0 MiB 1.32 677 13335 4957 6249 2129 64.1 MiB 0.15 0.00 4.62011 -128.464 -4.62011 4.62011 0.99 0.00111392 0.00103553 0.0806383 0.0748992 44 2349 49 6.95648e+06 332941 787024. 2723.27 2.86 0.340464 0.307774 27778 195446 -1 1698 19 1400 2040 140602 35375 3.65542 3.65542 -126.751 -3.65542 0 0 997811. 3452.63 0.29 0.09 0.28 -1 -1 0.29 0.0431028 0.0390687 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 6.61 vpr 63.49 MiB -1 -1 0.22 17796 1 0.02 -1 -1 30568 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65016 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.9 MiB 0.32 533 10509 4364 5792 353 63.5 MiB 0.11 0.00 2.922 -92.1888 -2.922 2.922 0.98 0.000828327 0.000769321 0.0557777 0.0518669 44 1829 39 6.95648e+06 188184 787024. 2723.27 2.54 0.250065 0.224744 27778 195446 -1 1236 21 1011 1542 102535 26534 3.01497 3.01497 -97.0155 -3.01497 0 0 997811. 3452.63 0.29 0.07 0.28 -1 -1 0.29 0.0349486 0.0314582 51 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 9.19 vpr 64.48 MiB -1 -1 0.24 18396 1 0.03 -1 -1 30292 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66028 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 25.5 MiB 0.65 923 15298 6192 8434 672 64.5 MiB 0.09 0.00 4.94787 -132.081 -4.94787 4.94787 0.96 0.000430799 0.000395652 0.037308 0.0342863 44 2651 33 6.95648e+06 347416 787024. 2723.27 4.98 0.371289 0.333379 27778 195446 -1 2053 20 1482 2608 198883 43433 4.43176 4.43176 -132.757 -4.43176 0 0 997811. 3452.63 0.27 0.05 0.15 -1 -1 0.27 0.0206129 0.0186226 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 9.72 vpr 63.54 MiB -1 -1 0.22 17772 1 0.03 -1 -1 30196 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65064 32 32 247 207 1 143 78 17 17 289 -1 unnamed_device 24.8 MiB 0.94 478 10702 3424 4721 2557 63.5 MiB 0.11 0.00 2.9972 -98.3507 -2.9972 2.9972 0.98 0.000866874 0.00080514 0.0582603 0.0541273 42 1893 44 6.95648e+06 202660 744469. 2576.02 5.02 0.402949 0.36097 27202 183097 -1 1278 25 1380 1949 155936 44758 3.17127 3.17127 -110.568 -3.17127 0 0 949917. 3286.91 0.28 0.10 0.26 -1 -1 0.28 0.0422915 0.0380211 57 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.81 vpr 63.81 MiB -1 -1 0.24 18032 1 0.03 -1 -1 30168 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65344 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 25.2 MiB 0.93 563 7684 3076 4271 337 63.8 MiB 0.09 0.00 3.70539 -107.459 -3.70539 3.70539 0.98 0.000933951 0.000867802 0.0451835 0.0420537 38 1897 24 6.95648e+06 246087 678818. 2348.85 3.08 0.245628 0.220749 26626 170182 -1 1399 18 917 1434 95138 22661 2.95562 2.95562 -100.809 -2.95562 0 0 902133. 3121.57 0.26 0.07 0.24 -1 -1 0.26 0.0350744 0.0317367 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 21.10 vpr 64.47 MiB -1 -1 0.26 18444 1 0.03 -1 -1 30516 -1 -1 16 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66020 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 25.3 MiB 1.54 772 11161 4679 5848 634 64.5 MiB 0.14 0.00 3.81182 -119.076 -3.81182 3.81182 0.99 0.00113366 0.00105416 0.0808514 0.0751795 46 2769 28 6.95648e+06 231611 828058. 2865.25 15.60 0.607843 0.546996 28066 200906 -1 2022 25 1867 2777 225256 53196 3.51916 3.51916 -121.531 -3.51916 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0552878 0.0499896 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 7.79 vpr 64.18 MiB -1 -1 0.25 18408 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65716 32 32 358 289 1 174 80 17 17 289 -1 unnamed_device 25.2 MiB 1.26 730 14528 6360 7668 500 64.2 MiB 0.18 0.00 4.50448 -132.805 -4.50448 4.50448 0.98 0.00115524 0.00107393 0.100668 0.0936197 40 2429 25 6.95648e+06 231611 706193. 2443.58 2.67 0.349978 0.317308 26914 176310 -1 1996 24 1740 2557 207714 49027 4.15882 4.15882 -146.591 -4.15882 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0542306 0.0490665 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 11.03 vpr 64.22 MiB -1 -1 0.24 18176 1 0.03 -1 -1 30384 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65764 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 25.2 MiB 1.73 893 12196 5165 6793 238 64.2 MiB 0.16 0.00 4.54489 -142.964 -4.54489 4.54489 0.98 0.00115075 0.00106019 0.0883759 0.0821002 46 2417 32 6.95648e+06 202660 828058. 2865.25 5.40 0.45916 0.414276 28066 200906 -1 2009 19 1324 2087 168247 35023 4.00076 4.00076 -138.836 -4.00076 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0444652 0.0403623 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 10.15 vpr 63.77 MiB -1 -1 0.23 18056 1 0.03 -1 -1 30220 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65304 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 25.2 MiB 2.80 776 12009 5242 6488 279 63.8 MiB 0.14 0.00 4.04528 -129.976 -4.04528 4.04528 0.98 0.000929797 0.000863808 0.0752051 0.0699572 46 1965 39 6.95648e+06 144757 828058. 2865.25 3.44 0.298202 0.268822 28066 200906 -1 1641 25 1329 1722 234139 91253 3.48192 3.48192 -120.119 -3.48192 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.0449795 0.0405311 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 10.95 vpr 64.02 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30456 -1 -1 12 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65552 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 25.4 MiB 1.96 663 10661 4446 5843 372 64.0 MiB 0.13 0.00 3.79972 -122.501 -3.79972 3.79972 0.98 0.00101673 0.000944266 0.0716614 0.0665884 46 1789 23 6.95648e+06 173708 828058. 2865.25 5.11 0.436532 0.39185 28066 200906 -1 1449 20 1146 1653 104958 25011 3.20646 3.20646 -115.123 -3.20646 0 0 1.01997e+06 3529.29 0.30 0.08 0.29 -1 -1 0.30 0.0417456 0.0377579 68 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 9.48 vpr 64.33 MiB -1 -1 0.26 18272 1 0.03 -1 -1 30468 -1 -1 22 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65872 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 25.4 MiB 0.84 674 10881 3783 5148 1950 64.3 MiB 0.13 0.00 3.0162 -94.5584 -3.0162 3.0162 0.98 0.00106879 0.000993114 0.0663506 0.0617659 40 2075 32 6.95648e+06 318465 706193. 2443.58 4.86 0.474984 0.427086 26914 176310 -1 1744 19 1206 1914 148745 34725 2.91167 2.91167 -100.663 -2.91167 0 0 926341. 3205.33 0.27 0.09 0.25 -1 -1 0.27 0.0411953 0.0373022 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.42 vpr 63.87 MiB -1 -1 0.24 18128 1 0.03 -1 -1 30580 -1 -1 28 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65400 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 25.2 MiB 0.62 778 10813 2608 7403 802 63.9 MiB 0.12 0.00 3.60279 -102.16 -3.60279 3.60279 0.98 0.000959637 0.000893495 0.0544352 0.050608 38 2123 28 6.95648e+06 405319 678818. 2348.85 3.06 0.260835 0.234721 26626 170182 -1 1896 21 1298 2140 191242 41556 3.69502 3.69502 -110.453 -3.69502 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0392034 0.0353725 72 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 7.26 vpr 63.92 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30272 -1 -1 12 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65456 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 25.3 MiB 0.73 563 10459 4351 5596 512 63.9 MiB 0.12 0.00 3.44073 -108.445 -3.44073 3.44073 0.98 0.00101276 0.000940469 0.0712103 0.0661952 62 1359 17 6.95648e+06 173708 1.05005e+06 3633.38 2.55 0.276093 0.249502 30946 263737 -1 1054 19 1014 1361 85317 21560 2.82827 2.82827 -99.5559 -2.82827 0 0 1.30136e+06 4502.97 0.37 0.07 0.41 -1 -1 0.37 0.0391311 0.0353714 61 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 11.28 vpr 63.98 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30252 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65516 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 25.0 MiB 1.68 640 12873 4842 6240 1791 64.0 MiB 0.15 0.00 3.39649 -120.54 -3.39649 3.39649 0.98 0.00106404 0.00098854 0.0896661 0.08336 54 2055 25 6.95648e+06 159232 949917. 3286.91 5.57 0.462982 0.416993 29506 232905 -1 1505 23 1439 2078 143277 35661 3.25327 3.25327 -118.448 -3.25327 0 0 1.17392e+06 4061.99 0.34 0.10 0.35 -1 -1 0.34 0.0480291 0.0433675 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 8.13 vpr 63.77 MiB -1 -1 0.24 17796 1 0.03 -1 -1 30460 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65304 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.1 MiB 0.50 710 11799 3748 5667 2384 63.8 MiB 0.13 0.00 4.65108 -122.985 -4.65108 4.65108 0.99 0.0010128 0.00094184 0.0656285 0.061094 48 2315 39 6.95648e+06 347416 865456. 2994.66 3.71 0.308721 0.278522 28354 207349 -1 1714 18 1084 1835 161446 38616 3.97042 3.97042 -119.771 -3.97042 0 0 1.05005e+06 3633.38 0.31 0.09 0.31 -1 -1 0.31 0.0378971 0.0343603 74 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 8.94 vpr 64.44 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30664 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65984 32 32 350 275 1 195 77 17 17 289 -1 unnamed_device 25.6 MiB 1.75 839 11813 4506 5923 1384 64.4 MiB 0.16 0.00 4.59692 -149.244 -4.59692 4.59692 0.98 0.00115424 0.00107373 0.0873084 0.0812826 46 2846 34 6.95648e+06 188184 828058. 2865.25 3.23 0.352669 0.319522 28066 200906 -1 2246 23 1793 2650 223962 50830 5.07701 5.07701 -159.096 -5.07701 0 0 1.01997e+06 3529.29 0.29 0.12 0.29 -1 -1 0.29 0.052648 0.0477013 81 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.13 vpr 64.49 MiB -1 -1 0.25 18364 1 0.03 -1 -1 30536 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66036 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 25.5 MiB 1.45 818 16468 6086 8049 2333 64.5 MiB 0.21 0.00 4.31183 -134.888 -4.31183 4.31183 0.95 0.00122473 0.00113928 0.107033 0.0994942 44 2779 29 6.95648e+06 347416 787024. 2723.27 2.72 0.322851 0.293541 27778 195446 -1 2034 25 1751 2784 251454 55379 4.2672 4.2672 -144.193 -4.2672 0 0 997811. 3452.63 0.29 0.13 0.28 -1 -1 0.29 0.0591964 0.0535998 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 8.40 vpr 64.12 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65664 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 25.2 MiB 1.12 810 13911 4952 7625 1334 64.1 MiB 0.18 0.00 4.06852 -133.682 -4.06852 4.06852 0.99 0.00125404 0.00116711 0.0929594 0.0864606 44 3092 39 6.95648e+06 332941 787024. 2723.27 3.31 0.390997 0.354287 27778 195446 -1 1962 25 1821 2947 221920 50771 3.89596 3.89596 -137.184 -3.89596 0 0 997811. 3452.63 0.29 0.12 0.28 -1 -1 0.29 0.0592017 0.053581 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 6.79 vpr 63.59 MiB -1 -1 0.24 18124 1 0.03 -1 -1 30316 -1 -1 12 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65112 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 25.0 MiB 0.88 540 8134 2607 3837 1690 63.6 MiB 0.10 0.00 3.76076 -106.203 -3.76076 3.76076 1.02 0.000912996 0.000848712 0.0499921 0.0464877 38 1944 33 6.95648e+06 173708 678818. 2348.85 2.13 0.209176 0.188469 26626 170182 -1 1394 19 978 1524 108625 26787 2.86702 2.86702 -103.251 -2.86702 0 0 902133. 3121.57 0.26 0.08 0.25 -1 -1 0.26 0.0353746 0.0319057 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 13.05 vpr 64.29 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30540 -1 -1 14 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65832 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 25.3 MiB 0.95 678 9356 3868 5007 481 64.3 MiB 0.13 0.00 4.36203 -133.981 -4.36203 4.36203 0.98 0.0012131 0.00112945 0.0734968 0.068279 48 2017 36 6.95648e+06 202660 865456. 2994.66 8.17 0.661988 0.596851 28354 207349 -1 1658 21 1752 2376 184978 43092 4.03061 4.03061 -137.948 -4.03061 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0501894 0.0455276 76 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.31 vpr 64.34 MiB -1 -1 0.25 18384 1 0.03 -1 -1 30400 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65884 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 25.3 MiB 1.53 842 12030 5028 6552 450 64.3 MiB 0.15 0.00 4.9029 -146.03 -4.9029 4.9029 0.98 0.00112991 0.0010516 0.0840166 0.0781517 46 2570 46 6.95648e+06 202660 828058. 2865.25 2.85 0.328962 0.298076 28066 200906 -1 1857 21 1673 2748 194501 44181 4.09461 4.09461 -137.841 -4.09461 0 0 1.01997e+06 3529.29 0.29 0.11 0.29 -1 -1 0.29 0.0472619 0.0429222 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 20.10 vpr 64.60 MiB -1 -1 0.26 18244 1 0.03 -1 -1 30244 -1 -1 14 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66148 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 25.5 MiB 1.38 802 12302 5209 6575 518 64.6 MiB 0.15 0.00 5.49296 -152.69 -5.49296 5.49296 1.00 0.00136815 0.00127381 0.0875326 0.0814423 44 2732 46 6.95648e+06 202660 787024. 2723.27 14.69 0.599572 0.539972 27778 195446 -1 1853 28 1686 2589 219714 60649 4.37076 4.37076 -148.98 -4.37076 0 0 997811. 3452.63 0.30 0.14 0.30 -1 -1 0.30 0.0598093 0.0540932 79 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 11.61 vpr 64.40 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30312 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65944 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 25.4 MiB 2.40 747 11063 3637 5035 2391 64.4 MiB 0.15 0.00 4.87546 -148.536 -4.87546 4.87546 0.98 0.00117721 0.00109392 0.0757245 0.0704072 46 2150 29 6.95648e+06 303989 828058. 2865.25 5.28 0.431364 0.389265 28066 200906 -1 1732 18 1038 1526 109776 25868 4.16701 4.16701 -142.049 -4.16701 0 0 1.01997e+06 3529.29 0.30 0.08 0.29 -1 -1 0.30 0.0436083 0.0396324 74 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.87 vpr 64.16 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30532 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65704 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 25.2 MiB 1.08 690 9368 3411 4136 1821 64.2 MiB 0.12 0.00 4.44043 -136.028 -4.44043 4.44043 0.98 0.00116883 0.00108632 0.0705623 0.0656422 52 2402 47 6.95648e+06 188184 926341. 3205.33 3.62 0.337192 0.304294 29218 227130 -1 1599 19 1408 2311 161913 41189 3.99247 3.99247 -137.055 -3.99247 0 0 1.14541e+06 3963.36 0.33 0.10 0.34 -1 -1 0.33 0.0454669 0.0412668 72 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 17.17 vpr 64.43 MiB -1 -1 0.27 18296 1 0.03 -1 -1 30412 -1 -1 16 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65980 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 25.4 MiB 1.14 661 10346 4002 4565 1779 64.4 MiB 0.13 0.00 4.05037 -124.329 -4.05037 4.05037 0.98 0.00118014 0.00109736 0.0782885 0.0728242 44 2578 47 6.95648e+06 231611 787024. 2723.27 12.14 0.638594 0.574067 27778 195446 -1 1655 21 1328 1967 137775 35243 3.81302 3.81302 -130 -3.81302 0 0 997811. 3452.63 0.30 0.10 0.29 -1 -1 0.30 0.0492314 0.0445959 73 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 9.10 vpr 63.64 MiB -1 -1 0.22 17816 1 0.03 -1 -1 30512 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65172 32 32 243 205 1 141 74 17 17 289 -1 unnamed_device 24.9 MiB 1.05 586 9374 3879 5247 248 63.6 MiB 0.10 0.00 3.56099 -107.065 -3.56099 3.56099 0.98 0.000865978 0.000804964 0.0548334 0.0509959 46 1469 18 6.95648e+06 144757 828058. 2865.25 4.26 0.324228 0.291137 28066 200906 -1 1326 21 874 1298 105801 24786 3.04267 3.04267 -102.991 -3.04267 0 0 1.01997e+06 3529.29 0.30 0.08 0.29 -1 -1 0.30 0.0362402 0.032672 54 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.23 vpr 64.40 MiB -1 -1 0.24 18404 1 0.03 -1 -1 30540 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65948 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 25.6 MiB 3.03 802 15255 5017 7734 2504 64.4 MiB 0.09 0.00 4.6485 -130.063 -4.6485 4.6485 0.69 0.000446571 0.000409634 0.0374946 0.0343326 48 2264 21 6.95648e+06 332941 865456. 2994.66 3.76 0.193241 0.170836 28354 207349 -1 1834 15 1053 1592 133467 31914 3.94486 3.94486 -134.486 -3.94486 0 0 1.05005e+06 3633.38 0.31 0.08 0.31 -1 -1 0.31 0.0382634 0.0348245 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.59 vpr 64.55 MiB -1 -1 0.25 18440 1 0.03 -1 -1 30512 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66104 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 25.5 MiB 0.81 783 8716 3564 4899 253 64.6 MiB 0.13 0.00 4.28453 -142.302 -4.28453 4.28453 0.98 0.0012585 0.00116944 0.0712784 0.0663301 46 2555 30 6.95648e+06 188184 828058. 2865.25 2.84 0.352179 0.318867 28066 200906 -1 1795 22 1674 2397 144637 35609 4.07252 4.07252 -146.78 -4.07252 0 0 1.01997e+06 3529.29 0.30 0.10 0.29 -1 -1 0.30 0.0548753 0.0498042 78 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 14.83 vpr 63.91 MiB -1 -1 0.26 18112 1 0.03 -1 -1 30460 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65444 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 25.1 MiB 1.86 634 12083 4617 6209 1257 63.9 MiB 0.14 0.00 4.05037 -119.139 -4.05037 4.05037 0.99 0.000907809 0.00084322 0.0727624 0.0676674 40 2015 30 6.95648e+06 159232 706193. 2443.58 9.10 0.438419 0.393251 26914 176310 -1 1666 20 1260 1588 133904 34165 3.56242 3.56242 -122.061 -3.56242 0 0 926341. 3205.33 0.29 0.09 0.26 -1 -1 0.29 0.0372421 0.0335832 68 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 9.91 vpr 64.00 MiB -1 -1 0.23 17816 1 0.03 -1 -1 30468 -1 -1 14 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65536 31 32 245 205 1 145 77 17 17 289 -1 unnamed_device 25.3 MiB 1.13 487 10835 3461 5636 1738 64.0 MiB 0.12 0.00 3.36359 -100.982 -3.36359 3.36359 0.98 0.000877387 0.000817032 0.060363 0.0561983 44 1587 37 6.95648e+06 202660 787024. 2723.27 5.03 0.351514 0.315495 27778 195446 -1 1066 22 1123 1588 95885 24992 2.83937 2.83937 -98.7391 -2.83937 0 0 997811. 3452.63 0.29 0.07 0.29 -1 -1 0.29 0.0378545 0.0340011 58 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 9.23 vpr 64.28 MiB -1 -1 0.25 18444 1 0.03 -1 -1 30708 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65820 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 25.2 MiB 1.67 752 12754 5308 6926 520 64.3 MiB 0.16 0.00 4.57592 -147.598 -4.57592 4.57592 1.00 0.00115017 0.00106979 0.0915576 0.0852249 48 2641 29 6.95648e+06 217135 865456. 2994.66 3.49 0.350563 0.317591 28354 207349 -1 2191 27 2184 2859 283875 85779 4.85451 4.85451 -164.13 -4.85451 0 0 1.05005e+06 3633.38 0.31 0.15 0.31 -1 -1 0.31 0.0596433 0.0540345 85 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.26 vpr 64.55 MiB -1 -1 0.25 18272 1 0.03 -1 -1 30408 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66096 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 25.5 MiB 1.13 797 12030 5060 6593 377 64.5 MiB 0.16 0.00 4.81473 -147.296 -4.81473 4.81473 0.98 0.00114215 0.00106164 0.0862561 0.0801613 46 2481 42 6.95648e+06 202660 828058. 2865.25 3.21 0.365792 0.330883 28066 200906 -1 1849 24 1536 2183 183405 45053 4.68426 4.68426 -152.348 -4.68426 0 0 1.01997e+06 3529.29 0.29 0.11 0.29 -1 -1 0.29 0.0541333 0.0490124 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.79 vpr 64.22 MiB -1 -1 0.25 18008 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65760 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 25.2 MiB 0.49 857 12156 5040 6495 621 64.2 MiB 0.16 0.00 4.94172 -141.808 -4.94172 4.94172 0.99 0.00119216 0.00110963 0.0866012 0.080703 48 2816 38 6.95648e+06 246087 865456. 2994.66 3.17 0.318707 0.289805 28354 207349 -1 2052 26 1904 3189 243253 60347 4.68531 4.68531 -154.295 -4.68531 0 0 1.05005e+06 3633.38 0.31 0.13 0.31 -1 -1 0.31 0.0601595 0.0546091 83 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 9.48 vpr 64.12 MiB -1 -1 0.25 18276 1 0.03 -1 -1 30456 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65656 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 25.2 MiB 0.89 694 11963 3988 5372 2603 64.1 MiB 0.14 0.00 3.42648 -99.7352 -3.42648 3.42648 0.99 0.00102472 0.000951736 0.0712639 0.0662613 38 2069 27 6.95648e+06 303989 678818. 2348.85 4.83 0.416075 0.374285 26626 170182 -1 1588 22 1374 2174 129850 30553 3.21712 3.21712 -106.404 -3.21712 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0446684 0.0403138 69 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.20 vpr 63.64 MiB -1 -1 0.25 18100 1 0.02 -1 -1 30512 -1 -1 16 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65164 27 32 255 219 1 129 75 17 17 289 -1 unnamed_device 24.9 MiB 0.58 461 8291 2789 4081 1421 63.6 MiB 0.09 0.00 2.92795 -88.1908 -2.92795 2.92795 0.98 0.000859176 0.000798947 0.0475359 0.0442275 34 1794 43 6.95648e+06 231611 618332. 2139.56 1.98 0.265291 0.238127 25762 151098 -1 1204 22 1085 1330 91397 23831 3.03797 3.03797 -99.0646 -3.03797 0 0 787024. 2723.27 0.24 0.07 0.21 -1 -1 0.24 0.0373899 0.0335991 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 11.14 vpr 64.50 MiB -1 -1 0.27 18524 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66048 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 25.5 MiB 1.47 1102 15044 5934 6987 2123 64.5 MiB 0.22 0.00 3.84665 -133.243 -3.84665 3.84665 0.98 0.00134141 0.00124849 0.121369 0.112988 50 3080 30 6.95648e+06 231611 902133. 3121.57 5.59 0.579755 0.525003 28642 213929 -1 2529 23 2105 3454 249463 55124 3.90642 3.90642 -138.278 -3.90642 0 0 1.08113e+06 3740.92 0.31 0.13 0.32 -1 -1 0.31 0.0610275 0.0554707 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 23.61 vpr 64.12 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30352 -1 -1 15 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65656 31 32 365 296 1 191 78 17 17 289 -1 unnamed_device 25.1 MiB 4.44 1054 12362 3699 7370 1293 64.1 MiB 0.17 0.00 5.54356 -160.149 -5.54356 5.54356 0.98 0.00116289 0.00108132 0.0899896 0.0837152 40 2842 43 6.95648e+06 217135 706193. 2443.58 15.19 0.677055 0.609472 26914 176310 -1 2635 21 1986 2998 318835 65021 4.92961 4.92961 -169.011 -4.92961 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.049097 0.0445185 82 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 10.67 vpr 64.18 MiB -1 -1 0.25 18276 1 0.03 -1 -1 30464 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65716 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 25.2 MiB 3.23 712 8923 3677 5027 219 64.2 MiB 0.11 0.00 3.7738 -128.135 -3.7738 3.7738 1.02 0.00105112 0.000976164 0.062474 0.058063 38 2634 47 6.95648e+06 159232 678818. 2348.85 3.62 0.328175 0.295352 26626 170182 -1 2024 18 1409 1991 164324 38913 3.70576 3.70576 -140.569 -3.70576 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0391511 0.035441 70 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 8.17 vpr 64.13 MiB -1 -1 0.15 18224 1 0.03 -1 -1 30536 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65672 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 25.2 MiB 0.41 938 14261 5382 6939 1940 64.1 MiB 0.17 0.00 4.23483 -126.342 -4.23483 4.23483 0.99 0.00108424 0.00100878 0.08496 0.0790243 38 2608 38 6.95648e+06 318465 678818. 2348.85 3.96 0.340468 0.307888 26626 170182 -1 2125 22 1277 1996 157110 33536 3.92096 3.92096 -132.272 -3.92096 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0473268 0.0428278 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 9.30 vpr 64.26 MiB -1 -1 0.27 18196 1 0.03 -1 -1 30540 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65800 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 25.2 MiB 0.87 924 11398 3933 5445 2020 64.3 MiB 0.14 0.00 4.47977 -130.348 -4.47977 4.47977 0.98 0.00121007 0.0011229 0.0738417 0.0686528 44 2244 22 6.95648e+06 361892 787024. 2723.27 4.51 0.457263 0.413004 27778 195446 -1 1892 19 1422 2205 130878 31579 3.72777 3.72777 -125.642 -3.72777 0 0 997811. 3452.63 0.30 0.11 0.28 -1 -1 0.30 0.0555366 0.0500164 83 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 9.05 vpr 63.75 MiB -1 -1 0.25 18364 1 0.03 -1 -1 30628 -1 -1 16 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65284 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 25.1 MiB 1.01 716 8544 3177 4311 1056 63.8 MiB 0.11 0.00 3.31107 -101.686 -3.31107 3.31107 0.98 0.00105149 0.000977782 0.0572591 0.0532887 38 2794 27 6.95648e+06 231611 678818. 2348.85 4.25 0.286968 0.258824 26626 170182 -1 1937 25 1504 2472 201746 45886 3.12117 3.12117 -114.279 -3.12117 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0513663 0.046389 68 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 10.56 vpr 64.49 MiB -1 -1 0.24 18308 1 0.03 -1 -1 30376 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66040 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 25.6 MiB 1.58 916 13856 5155 6510 2191 64.5 MiB 0.19 0.00 4.51937 -148.282 -4.51937 4.51937 1.01 0.00115018 0.00106996 0.100058 0.0931349 44 3694 47 6.95648e+06 202660 787024. 2723.27 4.99 0.390661 0.353927 27778 195446 -1 2481 20 1967 2873 281599 63540 4.72082 4.72082 -161.318 -4.72082 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.047168 0.0428671 88 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 7.17 vpr 64.45 MiB -1 -1 0.24 18448 1 0.03 -1 -1 30164 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65992 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 25.4 MiB 0.99 854 9338 3754 5311 273 64.4 MiB 0.13 0.00 4.47033 -147.36 -4.47033 4.47033 0.97 0.00122791 0.00114162 0.0679648 0.0632408 38 2677 36 6.95648e+06 260562 678818. 2348.85 2.31 0.305178 0.276758 26626 170182 -1 2167 25 1689 2276 189704 41870 4.10847 4.10847 -147.153 -4.10847 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0628083 0.0570035 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 12.49 vpr 63.74 MiB -1 -1 0.24 18148 1 0.03 -1 -1 30384 -1 -1 12 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65268 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 25.2 MiB 4.33 468 9953 3826 4648 1479 63.7 MiB 0.11 0.00 4.00493 -101.525 -4.00493 4.00493 1.00 0.000909542 0.000845286 0.062192 0.0578503 38 1422 28 6.95648e+06 173708 678818. 2348.85 4.41 0.359816 0.322889 26626 170182 -1 1021 21 827 1083 64577 17623 3.16332 3.16332 -97.2928 -3.16332 0 0 902133. 3121.57 0.26 0.07 0.24 -1 -1 0.26 0.037978 0.0342563 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 10.24 vpr 64.10 MiB -1 -1 0.24 18344 1 0.03 -1 -1 30488 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65640 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 25.2 MiB 1.22 608 10187 3178 5307 1702 64.1 MiB 0.12 0.00 3.51519 -119.059 -3.51519 3.51519 0.98 0.000999535 0.000928503 0.067052 0.0622883 44 1985 28 6.95648e+06 159232 787024. 2723.27 5.17 0.402175 0.360843 27778 195446 -1 1350 19 1036 1332 97131 23978 3.28656 3.28656 -121.953 -3.28656 0 0 997811. 3452.63 0.30 0.08 0.29 -1 -1 0.30 0.0391526 0.0353308 64 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 10.36 vpr 64.06 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30496 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65596 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 25.1 MiB 0.95 748 11615 3856 5496 2263 64.1 MiB 0.14 0.00 4.10411 -120.963 -4.10411 4.10411 0.99 0.00110083 0.0010251 0.0712665 0.0663684 46 2249 28 6.95648e+06 332941 828058. 2865.25 5.43 0.43374 0.391492 28066 200906 -1 1657 21 1208 1920 123280 30659 3.76666 3.76666 -122.785 -3.76666 0 0 1.01997e+06 3529.29 0.30 0.09 0.30 -1 -1 0.30 0.0455213 0.0412354 77 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 8.39 vpr 63.64 MiB -1 -1 0.25 17920 1 0.03 -1 -1 30380 -1 -1 13 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65164 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 25.0 MiB 1.83 593 9994 4212 5312 470 63.6 MiB 0.11 0.00 4.05727 -116.106 -4.05727 4.05727 0.99 0.000881798 0.000819167 0.0596955 0.0555095 40 2195 34 6.95648e+06 188184 706193. 2443.58 2.71 0.263658 0.23711 26914 176310 -1 1788 30 1484 1834 197758 65808 3.67751 3.67751 -118.403 -3.67751 0 0 926341. 3205.33 0.29 0.13 0.26 -1 -1 0.29 0.0511382 0.0460501 67 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 10.40 vpr 63.69 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30152 -1 -1 9 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65216 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 25.0 MiB 1.29 609 9497 4084 5186 227 63.7 MiB 0.11 0.00 3.96096 -113.861 -3.96096 3.96096 0.99 0.000934496 0.000868115 0.0609524 0.0566942 46 1904 22 6.95648e+06 130281 828058. 2865.25 5.25 0.355516 0.319403 28066 200906 -1 1340 19 1124 1673 120002 27602 3.42327 3.42327 -113.964 -3.42327 0 0 1.01997e+06 3529.29 0.31 0.08 0.30 -1 -1 0.31 0.0365657 0.0330664 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.86 vpr 64.23 MiB -1 -1 0.27 18292 1 0.03 -1 -1 30468 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65768 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 25.3 MiB 1.08 760 14295 5473 6487 2335 64.2 MiB 0.18 0.00 3.48773 -117.233 -3.48773 3.48773 0.98 0.00118682 0.00110353 0.0922893 0.085866 38 2236 34 6.95648e+06 347416 678818. 2348.85 2.88 0.369343 0.334484 26626 170182 -1 1759 19 1609 2157 143780 34790 3.29222 3.29222 -121.271 -3.29222 0 0 902133. 3121.57 0.26 0.09 0.25 -1 -1 0.26 0.0458206 0.0415706 79 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 9.32 vpr 63.72 MiB -1 -1 0.24 17996 1 0.03 -1 -1 30436 -1 -1 12 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65248 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 25.1 MiB 2.29 638 11925 5003 6558 364 63.7 MiB 0.13 0.00 3.74472 -112.927 -3.74472 3.74472 0.98 0.000890783 0.000827095 0.0698931 0.0649455 38 2052 50 6.95648e+06 173708 678818. 2348.85 3.27 0.2982 0.268461 26626 170182 -1 1684 20 1234 1727 139405 32318 3.36286 3.36286 -118.933 -3.36286 0 0 902133. 3121.57 0.26 0.08 0.26 -1 -1 0.26 0.03659 0.0330115 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 8.12 vpr 64.10 MiB -1 -1 0.28 18248 1 0.03 -1 -1 30128 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65636 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 25.1 MiB 1.42 684 15017 5927 7080 2010 64.1 MiB 0.17 0.00 3.20268 -108.628 -3.20268 3.20268 0.98 0.00112555 0.00104459 0.0925426 0.0859518 48 2130 46 6.95648e+06 318465 865456. 2994.66 2.69 0.321555 0.291281 28354 207349 -1 1705 19 1306 2003 156991 40044 3.18432 3.18432 -119.693 -3.18432 0 0 1.05005e+06 3633.38 0.33 0.10 0.33 -1 -1 0.33 0.0435228 0.0394527 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 8.72 vpr 64.25 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30436 -1 -1 15 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65792 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 25.1 MiB 1.82 793 8876 3629 4933 314 64.2 MiB 0.13 0.00 3.995 -134.834 -3.995 3.995 0.98 0.00122258 0.00113649 0.0692804 0.0644152 38 2484 27 6.95648e+06 217135 678818. 2348.85 3.04 0.339186 0.306598 26626 170182 -1 1981 21 1605 2109 174251 38168 3.52932 3.52932 -138.943 -3.52932 0 0 902133. 3121.57 0.26 0.11 0.26 -1 -1 0.26 0.0511711 0.0463752 73 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 7.51 vpr 63.78 MiB -1 -1 0.26 18160 1 0.03 -1 -1 30336 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65308 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 25.2 MiB 1.25 529 10304 4263 5737 304 63.8 MiB 0.12 0.00 2.9023 -97.7367 -2.9023 2.9023 1.01 0.00119142 0.00110459 0.0699351 0.0649578 44 1954 24 6.95648e+06 144757 787024. 2723.27 2.36 0.257381 0.23238 27778 195446 -1 1379 21 1188 1839 131692 34336 2.79722 2.79722 -104.419 -2.79722 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.0408187 0.0368095 57 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.67 vpr 63.82 MiB -1 -1 0.24 17904 1 0.03 -1 -1 30364 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65348 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 25.2 MiB 1.49 759 10819 2915 6394 1510 63.8 MiB 0.14 0.00 4.04348 -128.875 -4.04348 4.04348 0.98 0.000973202 0.000904614 0.0694633 0.0646081 44 2218 24 6.95648e+06 159232 787024. 2723.27 2.34 0.275682 0.248731 27778 195446 -1 1863 21 1258 1819 151000 33597 3.69952 3.69952 -128.066 -3.69952 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.0408388 0.0369055 70 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.53 vpr 64.29 MiB -1 -1 0.23 18388 1 0.03 -1 -1 30224 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65836 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 25.3 MiB 1.30 714 10370 4100 5259 1011 64.3 MiB 0.13 0.00 4.19403 -126.395 -4.19403 4.19403 0.98 0.00105697 0.000982885 0.0695681 0.0647405 48 2329 31 6.95648e+06 202660 865456. 2994.66 2.29 0.260955 0.236336 28354 207349 -1 1805 21 1575 2166 159536 40464 3.86922 3.86922 -128.731 -3.86922 0 0 1.05005e+06 3633.38 0.33 0.10 0.33 -1 -1 0.33 0.0450214 0.0407709 79 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.60 vpr 63.82 MiB -1 -1 0.26 18424 1 0.03 -1 -1 30216 -1 -1 21 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65356 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 25.1 MiB 1.17 662 11118 4280 5305 1533 63.8 MiB 0.13 0.00 4.24388 -117.238 -4.24388 4.24388 0.98 0.00104487 0.000970821 0.0683387 0.0635592 46 2000 26 6.95648e+06 303989 828058. 2865.25 2.60 0.295713 0.266999 28066 200906 -1 1441 22 1107 1660 104559 26824 3.56236 3.56236 -110.795 -3.56236 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0459348 0.0415334 71 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 12.23 vpr 64.45 MiB -1 -1 0.26 18624 1 0.03 -1 -1 30516 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65992 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 25.6 MiB 1.41 793 12030 5031 6445 554 64.4 MiB 0.17 0.00 4.95915 -156.293 -4.95915 4.95915 0.98 0.00124585 0.00115867 0.0942107 0.0877086 56 2433 46 6.95648e+06 202660 973134. 3367.25 6.62 0.581406 0.52512 29794 239141 -1 1989 21 1912 2790 238645 59297 4.68991 4.68991 -159.444 -4.68991 0 0 1.19926e+06 4149.71 0.34 0.12 0.37 -1 -1 0.34 0.0527517 0.0479498 89 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.74 vpr 63.49 MiB -1 -1 0.23 17868 1 0.03 -1 -1 30116 -1 -1 13 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65012 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.9 MiB 2.21 535 10476 4313 5711 452 63.5 MiB 0.05 0.00 3.50918 -93.5706 -3.50918 3.50918 0.69 0.000309998 0.000284129 0.0218416 0.0200752 38 1766 24 6.95648e+06 188184 678818. 2348.85 1.43 0.0904848 0.0797572 26626 170182 -1 1412 24 1055 1712 124559 28526 3.24347 3.24347 -101.467 -3.24347 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0383354 0.0344254 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 9.91 vpr 64.41 MiB -1 -1 0.25 18308 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65956 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 25.6 MiB 1.12 808 15533 3949 11126 458 64.4 MiB 0.20 0.00 3.75239 -135.532 -3.75239 3.75239 1.01 0.00127096 0.00118064 0.10358 0.0962699 38 2737 47 6.95648e+06 361892 678818. 2348.85 4.82 0.429621 0.389044 26626 170182 -1 2083 22 1763 2346 191110 43988 3.85006 3.85006 -145.923 -3.85006 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0552246 0.050055 81 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.05 vpr 63.84 MiB -1 -1 0.25 18272 1 0.03 -1 -1 30240 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65372 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 25.1 MiB 2.62 581 11544 4905 6301 338 63.8 MiB 0.15 0.00 2.99685 -114.691 -2.99685 2.99685 0.98 0.0011629 0.00108008 0.0897163 0.0834039 46 1934 25 6.95648e+06 144757 828058. 2865.25 4.54 0.473862 0.427332 28066 200906 -1 1621 24 1538 2090 166876 39861 3.26262 3.26262 -127.105 -3.26262 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0543464 0.0490278 61 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.64 vpr 64.42 MiB -1 -1 0.25 18336 1 0.03 -1 -1 30456 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65964 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 25.5 MiB 1.22 727 10670 3941 5494 1235 64.4 MiB 0.14 0.00 4.11943 -125.455 -4.11943 4.11943 0.98 0.00116195 0.00108064 0.0688517 0.0641005 44 2746 48 6.95648e+06 318465 787024. 2723.27 2.52 0.322626 0.291638 27778 195446 -1 1894 20 1151 1822 135649 33527 3.75966 3.75966 -133.723 -3.75966 0 0 997811. 3452.63 0.29 0.09 0.28 -1 -1 0.29 0.0465449 0.0421795 75 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.42 vpr 64.47 MiB -1 -1 0.26 18664 1 0.03 -1 -1 30496 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66020 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 25.5 MiB 1.76 1022 12247 3468 7038 1741 64.5 MiB 0.19 0.00 6.03007 -174.097 -6.03007 6.03007 0.98 0.00129337 0.00120408 0.0980995 0.0913818 46 3099 24 6.95648e+06 217135 828058. 2865.25 2.60 0.337188 0.307669 28066 200906 -1 2366 23 2125 3157 272600 73439 4.96885 4.96885 -166.162 -4.96885 0 0 1.01997e+06 3529.29 0.30 0.14 0.29 -1 -1 0.30 0.0585833 0.0532762 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 10.22 vpr 63.42 MiB -1 -1 0.23 18024 1 0.03 -1 -1 30308 -1 -1 11 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64944 30 32 224 207 1 131 73 17 17 289 -1 unnamed_device 24.8 MiB 2.09 529 10865 3546 5596 1723 63.4 MiB 0.11 0.00 2.69765 -94.3472 -2.69765 2.69765 0.98 0.000757232 0.000702428 0.0564815 0.0524447 38 1581 21 6.95648e+06 159232 678818. 2348.85 4.43 0.347653 0.310275 26626 170182 -1 1359 19 862 1085 103139 23425 2.23103 2.23103 -93.2207 -2.23103 0 0 902133. 3121.57 0.26 0.07 0.24 -1 -1 0.26 0.0293504 0.0263222 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 8.71 vpr 63.81 MiB -1 -1 0.24 18008 1 0.03 -1 -1 30476 -1 -1 11 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65340 30 32 286 239 1 137 73 17 17 289 -1 unnamed_device 25.1 MiB 1.84 541 7673 3127 4256 290 63.8 MiB 0.09 0.00 3.61654 -109.463 -3.61654 3.61654 0.98 0.000956297 0.000883351 0.051112 0.0475384 36 2047 38 6.95648e+06 159232 648988. 2245.63 3.18 0.27956 0.251419 26050 158493 -1 1597 20 1167 1638 150531 35547 3.10092 3.10092 -115.638 -3.10092 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.038492 0.0347434 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.00 vpr 63.75 MiB -1 -1 0.24 17912 1 0.03 -1 -1 30200 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65280 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 25.0 MiB 0.42 540 6894 2748 3891 255 63.8 MiB 0.09 0.00 3.28706 -107.534 -3.28706 3.28706 0.99 0.000984154 0.000914611 0.0465642 0.0433131 48 2081 45 6.95648e+06 144757 865456. 2994.66 3.72 0.292727 0.262793 28354 207349 -1 1503 29 1521 2494 250208 68471 3.17937 3.17937 -113.906 -3.17937 0 0 1.05005e+06 3633.38 0.31 0.13 0.31 -1 -1 0.31 0.0541087 0.0487312 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.16 vpr 63.54 MiB -1 -1 0.22 17980 1 0.02 -1 -1 30400 -1 -1 18 25 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65068 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 24.9 MiB 0.46 429 8607 3204 4152 1251 63.5 MiB 0.09 0.00 3.25923 -75.9549 -3.25923 3.25923 0.98 0.000737321 0.000684848 0.0427027 0.0397065 38 1492 25 6.95648e+06 260562 678818. 2348.85 2.03 0.201241 0.180366 26626 170182 -1 1143 19 882 1357 94399 23127 2.84552 2.84552 -82.1606 -2.84552 0 0 902133. 3121.57 0.26 0.06 0.24 -1 -1 0.26 0.0286219 0.0257192 53 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 20.17 vpr 64.25 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30480 -1 -1 12 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65796 32 32 376 307 1 179 76 17 17 289 -1 unnamed_device 25.3 MiB 2.02 770 10636 4042 5174 1420 64.3 MiB 0.15 0.00 4.01326 -127.68 -4.01326 4.01326 0.90 0.00118518 0.00110123 0.0826331 0.0768637 40 2918 50 6.95648e+06 173708 706193. 2443.58 14.28 0.67559 0.608131 26914 176310 -1 2258 22 1685 2808 275444 64428 4.19597 4.19597 -143.099 -4.19597 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0518755 0.047009 72 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 8.97 vpr 64.26 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30476 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65804 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 25.5 MiB 1.08 746 9540 3860 5304 376 64.3 MiB 0.14 0.00 4.09438 -138.115 -4.09438 4.09438 0.98 0.00126523 0.00117547 0.0740639 0.068851 38 2760 36 6.95648e+06 246087 678818. 2348.85 4.00 0.368731 0.333188 26626 170182 -1 1984 23 1780 2306 175361 40979 3.60722 3.60722 -138.562 -3.60722 0 0 902133. 3121.57 0.26 0.12 0.26 -1 -1 0.26 0.0575055 0.0521241 80 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 11.12 vpr 64.25 MiB -1 -1 0.25 18228 1 0.03 -1 -1 30168 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65788 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 25.2 MiB 1.70 851 13599 5123 6301 2175 64.2 MiB 0.18 0.00 5.05471 -146.645 -5.05471 5.05471 0.98 0.00114827 0.00106753 0.0960362 0.0893429 44 3123 35 6.99608e+06 220735 787024. 2723.27 5.48 0.550177 0.496294 27778 195446 -1 1921 22 1577 2258 144689 36009 4.35531 4.35531 -146.893 -4.35531 0 0 997811. 3452.63 0.30 0.10 0.28 -1 -1 0.30 0.0482104 0.0436987 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 7.32 vpr 64.11 MiB -1 -1 0.27 18204 1 0.03 -1 -1 30488 -1 -1 18 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65648 30 32 363 293 1 224 80 17 17 289 -1 unnamed_device 25.0 MiB 0.91 900 10744 3918 5217 1609 64.1 MiB 0.14 0.00 4.91636 -147.436 -4.91636 4.91636 0.98 0.00115272 0.00107219 0.0755021 0.0702418 44 3179 31 6.99608e+06 264882 787024. 2723.27 2.56 0.324883 0.294117 27778 195446 -1 2151 21 2052 3019 215557 49236 4.73179 4.73179 -153.347 -4.73179 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0485572 0.0439994 101 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.97 vpr 63.69 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30316 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65220 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 25.1 MiB 0.83 763 12030 3995 5720 2315 63.7 MiB 0.14 0.00 3.55089 -109.995 -3.55089 3.55089 0.98 0.00100104 0.000930448 0.0759032 0.0705834 46 2147 25 6.99608e+06 206020 828058. 2865.25 5.29 0.398058 0.35832 28066 200906 -1 1852 22 1259 1742 135927 30954 3.59951 3.59951 -116.667 -3.59951 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0437366 0.0395262 76 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 10.02 vpr 63.79 MiB -1 -1 0.24 18364 1 0.03 -1 -1 30500 -1 -1 16 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65316 29 32 308 248 1 182 77 17 17 289 -1 unnamed_device 25.1 MiB 1.00 725 10998 3857 5366 1775 63.8 MiB 0.13 0.00 4.23493 -118.016 -4.23493 4.23493 0.98 0.00102322 0.000951405 0.0720076 0.0669763 46 2283 23 6.99608e+06 235451 828058. 2865.25 5.21 0.398097 0.358723 28066 200906 -1 1787 22 1378 2195 143918 35573 3.94532 3.94532 -123.168 -3.94532 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0448258 0.040541 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 12.43 vpr 64.02 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30496 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65556 32 32 336 268 1 193 78 17 17 289 -1 unnamed_device 25.1 MiB 2.88 864 10536 4352 5849 335 64.0 MiB 0.14 0.00 4.46745 -139.506 -4.46745 4.46745 0.98 0.00111599 0.00103808 0.0737783 0.0686185 46 2991 27 6.99608e+06 206020 828058. 2865.25 5.66 0.421814 0.380387 28066 200906 -1 2069 20 1384 2357 153036 35390 4.24831 4.24831 -147.291 -4.24831 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0451646 0.040962 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 11.10 vpr 64.16 MiB -1 -1 0.25 18160 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65700 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 25.1 MiB 3.46 959 11981 4937 6553 491 64.2 MiB 0.16 0.00 3.38926 -120.16 -3.38926 3.38926 0.98 0.00118209 0.00108939 0.0839623 0.0779964 56 2505 33 6.99608e+06 250167 973134. 3367.25 3.61 0.381452 0.345079 29794 239141 -1 2052 22 1659 2513 183529 47347 3.56566 3.56566 -125.712 -3.56566 0 0 1.19926e+06 4149.71 0.34 0.11 0.37 -1 -1 0.34 0.0514941 0.0466921 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 6.86 vpr 63.44 MiB -1 -1 0.23 17924 1 0.02 -1 -1 30628 -1 -1 15 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64964 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 0.82 493 10924 4387 5255 1282 63.4 MiB 0.12 0.00 3.74847 -105.464 -3.74847 3.74847 0.98 0.000865134 0.000803908 0.0634739 0.0589594 44 1757 35 6.99608e+06 220735 787024. 2723.27 2.30 0.264347 0.23776 27778 195446 -1 1200 20 1169 1689 115685 28933 3.02191 3.02191 -101.432 -3.02191 0 0 997811. 3452.63 0.29 0.07 0.29 -1 -1 0.29 0.0351309 0.0316302 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.65 vpr 63.87 MiB -1 -1 0.23 17596 1 0.03 -1 -1 30356 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65400 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.1 MiB 0.37 646 12568 4471 6001 2096 63.9 MiB 0.12 0.00 2.86205 -89.6785 -2.86205 2.86205 0.98 0.000953183 0.000884886 0.0638111 0.0593171 40 2313 45 6.99608e+06 367892 706193. 2443.58 3.50 0.299799 0.269923 26914 176310 -1 1696 21 1232 2123 167575 43959 2.74432 2.74432 -97.219 -2.74432 0 0 926341. 3205.33 0.27 0.09 0.25 -1 -1 0.27 0.0453024 0.0412831 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 9.33 vpr 64.03 MiB -1 -1 0.26 18264 1 0.03 -1 -1 30196 -1 -1 14 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65564 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 25.0 MiB 0.86 971 11487 3139 6320 2028 64.0 MiB 0.14 0.00 3.37244 -119.224 -3.37244 3.37244 0.98 0.00101214 0.000940673 0.0746251 0.0693685 40 2281 20 6.99608e+06 206020 706193. 2443.58 4.69 0.383467 0.345168 26914 176310 -1 2171 17 1666 2230 176146 38300 3.13332 3.13332 -121.371 -3.13332 0 0 926341. 3205.33 0.27 0.09 0.26 -1 -1 0.27 0.0359079 0.0324721 87 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 9.15 vpr 63.67 MiB -1 -1 0.23 18096 1 0.03 -1 -1 30316 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65200 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 25.0 MiB 0.88 721 12465 5225 6975 265 63.7 MiB 0.15 0.00 3.92192 -133.493 -3.92192 3.92192 0.98 0.000996449 0.00092642 0.0793264 0.073791 44 2296 23 6.99608e+06 191304 787024. 2723.27 4.43 0.387956 0.349173 27778 195446 -1 1849 22 1488 1883 145526 31820 3.35856 3.35856 -126.885 -3.35856 0 0 997811. 3452.63 0.29 0.09 0.28 -1 -1 0.29 0.0432035 0.0390146 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.74 vpr 63.95 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30596 -1 -1 14 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65480 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 25.0 MiB 1.83 754 13516 5712 6664 1140 63.9 MiB 0.16 0.00 3.97461 -128.358 -3.97461 3.97461 0.98 0.000977471 0.000907005 0.0856843 0.0795798 36 2875 48 6.99608e+06 206020 648988. 2245.63 3.15 0.299678 0.270273 26050 158493 -1 1951 20 1495 2018 175462 48335 3.93721 3.93721 -132.771 -3.93721 0 0 828058. 2865.25 0.25 0.10 0.22 -1 -1 0.25 0.0392716 0.0354214 83 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 6.33 vpr 63.67 MiB -1 -1 0.23 18184 1 0.03 -1 -1 30204 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65200 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 25.1 MiB 0.66 849 10977 2887 7437 653 63.7 MiB 0.13 0.00 3.07868 -112.05 -3.07868 3.07868 0.98 0.000923671 0.000858588 0.0668548 0.0621816 38 2257 20 6.99608e+06 161872 678818. 2348.85 1.94 0.218903 0.197839 26626 170182 -1 1985 22 1136 1463 132703 28844 3.10117 3.10117 -119.106 -3.10117 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0402708 0.0362391 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 10.82 vpr 64.21 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30340 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65748 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 25.2 MiB 0.83 843 12585 5259 6846 480 64.2 MiB 0.16 0.00 3.78992 -128.054 -3.78992 3.78992 0.98 0.00114417 0.00106432 0.088122 0.0819943 54 2383 27 6.99608e+06 220735 949917. 3286.91 5.99 0.509928 0.459758 29506 232905 -1 1990 22 1653 2431 176328 40587 3.23321 3.23321 -123.663 -3.23321 0 0 1.17392e+06 4061.99 0.34 0.10 0.36 -1 -1 0.34 0.0493796 0.0447675 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.65 vpr 64.20 MiB -1 -1 0.27 18312 1 0.03 -1 -1 30532 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65744 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 25.1 MiB 0.83 1008 11981 3623 6079 2279 64.2 MiB 0.16 0.00 4.68712 -142.46 -4.68712 4.68712 0.98 0.00116045 0.00107902 0.0833141 0.0775147 52 2617 46 6.99608e+06 250167 926341. 3205.33 2.76 0.337457 0.305919 29218 227130 -1 1885 22 1903 2594 166897 41943 4.42855 4.42855 -144.94 -4.42855 0 0 1.14541e+06 3963.36 0.34 0.11 0.34 -1 -1 0.34 0.0508621 0.046118 97 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 9.55 vpr 63.37 MiB -1 -1 0.23 18076 1 0.03 -1 -1 30568 -1 -1 13 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64888 29 32 248 215 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 3.45 611 8754 3597 4747 410 63.4 MiB 0.10 0.00 3.0585 -88.5437 -3.0585 3.0585 1.00 0.000844429 0.000784538 0.0504999 0.0469577 36 2266 36 6.99608e+06 191304 648988. 2245.63 2.43 0.224718 0.201811 26050 158493 -1 1549 24 1127 1595 138314 31380 3.31452 3.31452 -101.591 -3.31452 0 0 828058. 2865.25 0.25 0.08 0.23 -1 -1 0.25 0.0393885 0.0353228 63 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 11.28 vpr 64.22 MiB -1 -1 0.25 18348 1 0.03 -1 -1 30368 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65760 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 25.2 MiB 1.46 1140 12464 4408 6591 1465 64.2 MiB 0.17 0.00 3.78769 -130.542 -3.78769 3.78769 0.98 0.00118478 0.00110156 0.0890768 0.0828465 46 2819 24 6.99608e+06 235451 828058. 2865.25 5.82 0.52875 0.477018 28066 200906 -1 2334 23 1875 2916 225844 49226 3.51731 3.51731 -135.312 -3.51731 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0539971 0.0488753 96 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 9.44 vpr 64.10 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30160 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65636 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 25.1 MiB 0.81 918 13768 4694 7034 2040 64.1 MiB 0.18 0.00 4.0525 -128.935 -4.0525 4.0525 0.97 0.00111683 0.00103915 0.0942997 0.0878078 44 2400 30 6.99608e+06 220735 787024. 2723.27 4.73 0.452672 0.409119 27778 195446 -1 1967 19 1363 1845 139283 30108 3.33851 3.33851 -123.467 -3.33851 0 0 997811. 3452.63 0.29 0.09 0.31 -1 -1 0.29 0.0436006 0.0395853 84 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 15.21 vpr 64.06 MiB -1 -1 0.24 18356 1 0.03 -1 -1 30432 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65596 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 25.0 MiB 0.80 903 11064 3444 5931 1689 64.1 MiB 0.14 0.00 3.21889 -121.244 -3.21889 3.21889 0.98 0.00103006 0.000956793 0.070825 0.0658466 40 2881 40 6.99608e+06 220735 706193. 2443.58 10.55 0.537467 0.481594 26914 176310 -1 2273 33 2303 2869 350154 101742 3.52226 3.52226 -137.963 -3.52226 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0634253 0.0570862 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.34 vpr 63.30 MiB -1 -1 0.24 17988 1 0.03 -1 -1 30164 -1 -1 10 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64820 30 32 222 206 1 133 72 17 17 289 -1 unnamed_device 24.7 MiB 1.53 489 10949 4586 6034 329 63.3 MiB 0.11 0.00 2.30246 -84.2954 -2.30246 2.30246 0.98 0.000756516 0.000701989 0.0577527 0.053632 36 1688 41 6.99608e+06 147157 648988. 2245.63 2.17 0.237804 0.213288 26050 158493 -1 1196 21 802 882 70729 18136 2.19083 2.19083 -85.0001 -2.19083 0 0 828058. 2865.25 0.25 0.06 0.23 -1 -1 0.25 0.031524 0.0282178 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 11.78 vpr 63.74 MiB -1 -1 0.22 18308 1 0.03 -1 -1 30584 -1 -1 13 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65272 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 24.9 MiB 3.07 914 8396 2822 4710 864 63.7 MiB 0.11 0.00 4.11252 -133.321 -4.11252 4.11252 1.00 0.000968402 0.000900335 0.0549907 0.0511585 46 2070 21 6.99608e+06 191304 828058. 2865.25 4.87 0.398276 0.357494 28066 200906 -1 1811 20 1181 1751 153670 32516 3.41506 3.41506 -128.52 -3.41506 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0389546 0.0351973 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.98 vpr 64.16 MiB -1 -1 0.24 18304 1 0.03 -1 -1 30464 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65696 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 25.1 MiB 1.07 753 13260 4777 6497 1986 64.2 MiB 0.16 0.00 3.96428 -130.083 -3.96428 3.96428 0.98 0.00113084 0.00105205 0.0852773 0.0792996 46 2666 31 6.99608e+06 294314 828058. 2865.25 4.01 0.340211 0.30777 28066 200906 -1 1857 22 1927 2814 206830 53179 3.9016 3.9016 -137.378 -3.9016 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0490102 0.0443587 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 8.02 vpr 64.14 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65684 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 25.3 MiB 1.46 1213 11432 3690 6927 815 64.1 MiB 0.17 0.00 4.63424 -146.103 -4.63424 4.63424 0.97 0.00119141 0.00110832 0.0841561 0.078185 44 3200 23 6.99608e+06 235451 787024. 2723.27 2.60 0.334844 0.303222 27778 195446 -1 2540 21 1807 2733 227939 46035 3.87575 3.87575 -142.592 -3.87575 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0497193 0.0450828 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 6.58 vpr 63.16 MiB -1 -1 0.22 18100 1 0.02 -1 -1 30668 -1 -1 13 26 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64676 26 32 190 182 1 122 71 17 17 289 -1 unnamed_device 24.6 MiB 0.75 398 7809 3208 4118 483 63.2 MiB 0.07 0.00 2.6826 -76.1752 -2.6826 2.6826 1.00 0.000643552 0.000595436 0.0364358 0.0337737 38 1222 21 6.99608e+06 191304 678818. 2348.85 2.13 0.170729 0.152702 26626 170182 -1 992 20 714 804 64101 15603 2.55367 2.55367 -76.7536 -2.55367 0 0 902133. 3121.57 0.26 0.05 0.24 -1 -1 0.26 0.0264545 0.0237817 52 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 9.61 vpr 63.66 MiB -1 -1 0.22 17808 1 0.03 -1 -1 30540 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65184 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 24.8 MiB 0.93 705 12078 4998 6546 534 63.7 MiB 0.15 0.00 4.4821 -114.357 -4.4821 4.4821 0.98 0.000990116 0.00092085 0.0737186 0.0686322 40 2543 26 6.99608e+06 220735 706193. 2443.58 4.86 0.381466 0.343799 26914 176310 -1 1970 21 1408 2406 196936 45416 3.82996 3.82996 -124.915 -3.82996 0 0 926341. 3205.33 0.27 0.10 0.26 -1 -1 0.27 0.0417368 0.0377559 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 5.39 vpr 63.13 MiB -1 -1 0.19 17548 1 0.02 -1 -1 30140 -1 -1 8 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64644 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.4 MiB 0.20 437 9906 4129 5591 186 63.1 MiB 0.08 0.00 2.05011 -68.4317 -2.05011 2.05011 0.98 0.00062309 0.000576203 0.0431585 0.039937 36 1203 23 6.99608e+06 117725 648988. 2245.63 1.62 0.173928 0.155524 26050 158493 -1 957 15 524 617 48672 11988 2.17978 2.17978 -71.8127 -2.17978 0 0 828058. 2865.25 0.25 0.04 0.22 -1 -1 0.25 0.0200003 0.0179731 42 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 9.85 vpr 63.88 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30108 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65412 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 25.2 MiB 0.98 787 11034 4537 6125 372 63.9 MiB 0.14 0.00 4.53486 -122.805 -4.53486 4.53486 0.99 0.00100998 0.000939022 0.0704881 0.0655662 40 2322 25 6.99608e+06 206020 706193. 2443.58 5.02 0.42675 0.383931 26914 176310 -1 1950 25 1255 1810 159745 36911 4.34007 4.34007 -128.926 -4.34007 0 0 926341. 3205.33 0.27 0.10 0.26 -1 -1 0.27 0.0496123 0.0448633 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.95 vpr 63.82 MiB -1 -1 0.23 17684 1 0.03 -1 -1 30488 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65352 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.3 MiB 0.49 752 10873 3818 5551 1504 63.8 MiB 0.13 0.00 2.96725 -98.6672 -2.96725 2.96725 0.98 0.00103142 0.000960097 0.06302 0.0586791 38 2617 45 6.99608e+06 309029 678818. 2348.85 3.71 0.317809 0.286591 26626 170182 -1 1870 23 1453 2380 158409 38776 2.93547 2.93547 -112.268 -2.93547 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0463262 0.0418806 74 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 8.59 vpr 63.96 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30488 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65492 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 24.9 MiB 1.08 867 7853 3139 4431 283 64.0 MiB 0.11 0.00 4.12347 -127.886 -4.12347 4.12347 0.98 0.00109895 0.00102164 0.0545424 0.050716 46 2921 28 6.99608e+06 220735 828058. 2865.25 3.62 0.295878 0.267008 28066 200906 -1 2073 21 1687 2541 176871 42055 3.67346 3.67346 -124.802 -3.67346 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0546462 0.0493027 87 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.27 vpr 63.55 MiB -1 -1 0.23 18120 1 0.03 -1 -1 30288 -1 -1 12 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65076 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 24.8 MiB 2.21 674 9356 2870 4551 1935 63.6 MiB 0.11 0.00 3.13575 -106.667 -3.13575 3.13575 0.98 0.000950756 0.00088352 0.0583179 0.0542099 40 2117 25 6.99608e+06 176588 706193. 2443.58 2.36 0.262509 0.236428 26914 176310 -1 1826 23 1331 1875 170396 39442 3.00387 3.00387 -123.52 -3.00387 0 0 926341. 3205.33 0.27 0.10 0.26 -1 -1 0.27 0.0429184 0.0386687 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 7.54 vpr 63.79 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30232 -1 -1 14 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 25.1 MiB 1.28 589 9996 4089 5442 465 63.8 MiB 0.12 0.00 3.74777 -109.42 -3.74777 3.74777 1.03 0.000884728 0.000821583 0.0593868 0.0552172 46 2058 26 6.99608e+06 206020 828058. 2865.25 2.29 0.221425 0.199452 28066 200906 -1 1567 20 1220 1875 140094 37497 3.62791 3.62791 -115.852 -3.62791 0 0 1.01997e+06 3529.29 0.30 0.08 0.29 -1 -1 0.30 0.0355054 0.0319806 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 8.74 vpr 63.58 MiB -1 -1 0.24 18028 1 0.03 -1 -1 30196 -1 -1 18 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65104 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 25.1 MiB 2.76 566 10702 3839 4998 1865 63.6 MiB 0.12 0.00 3.27594 -101.475 -3.27594 3.27594 0.98 0.00123496 0.00117047 0.0595778 0.0553802 42 2347 36 6.99608e+06 264882 744469. 2576.02 2.24 0.2666 0.239729 27202 183097 -1 1410 18 1181 1888 121063 30621 3.15351 3.15351 -104.804 -3.15351 0 0 949917. 3286.91 0.28 0.07 0.28 -1 -1 0.28 0.0326556 0.0294582 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 6.44 vpr 63.44 MiB -1 -1 0.22 17864 1 0.03 -1 -1 30372 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64960 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.8 MiB 0.41 510 11079 3828 5373 1878 63.4 MiB 0.12 0.00 3.37459 -106.177 -3.37459 3.37459 0.98 0.000891509 0.000828336 0.0660672 0.0614582 44 1685 28 6.99608e+06 147157 787024. 2723.27 2.28 0.264625 0.238561 27778 195446 -1 1211 24 1173 1815 98728 27323 3.13407 3.13407 -104.108 -3.13407 0 0 997811. 3452.63 0.29 0.08 0.28 -1 -1 0.29 0.0422433 0.0380965 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 8.94 vpr 63.41 MiB -1 -1 0.23 18024 1 0.03 -1 -1 30296 -1 -1 13 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64936 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 24.6 MiB 1.00 892 8396 1989 5699 708 63.4 MiB 0.10 0.00 3.27018 -109.388 -3.27018 3.27018 0.98 0.000914573 0.000850223 0.050555 0.0470378 36 2446 26 6.99608e+06 191304 648988. 2245.63 4.28 0.251027 0.225865 26050 158493 -1 1908 23 1266 1719 138310 30919 2.82222 2.82222 -110.591 -2.82222 0 0 828058. 2865.25 0.27 0.09 0.23 -1 -1 0.27 0.0417554 0.0376072 69 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 9.04 vpr 63.76 MiB -1 -1 0.24 18256 1 0.03 -1 -1 30568 -1 -1 15 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65288 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 24.9 MiB 2.01 893 11756 3359 7323 1074 63.8 MiB 0.14 0.00 2.90695 -103.76 -2.90695 2.90695 0.98 0.000945801 0.000879362 0.0724738 0.0674075 36 2308 30 6.99608e+06 220735 648988. 2245.63 3.35 0.28304 0.255006 26050 158493 -1 1985 20 1388 1826 144523 31495 2.69422 2.69422 -107.795 -2.69422 0 0 828058. 2865.25 0.25 0.08 0.22 -1 -1 0.25 0.0382781 0.0344951 77 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 19.44 vpr 64.22 MiB -1 -1 0.25 18220 1 0.03 -1 -1 30560 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65760 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 25.2 MiB 1.10 941 11432 4088 5131 2213 64.2 MiB 0.15 0.00 4.40712 -125.714 -4.40712 4.40712 0.98 0.00121371 0.00112965 0.0843031 0.0785089 48 2809 29 6.99608e+06 235451 865456. 2994.66 14.43 0.671012 0.605314 28354 207349 -1 2266 22 1540 2532 206540 55995 3.85107 3.85107 -125.036 -3.85107 0 0 1.05005e+06 3633.38 0.31 0.12 0.31 -1 -1 0.31 0.0528184 0.0479469 92 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 8.54 vpr 64.36 MiB -1 -1 0.26 18288 1 0.03 -1 -1 30452 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65900 32 32 391 311 1 244 82 17 17 289 -1 unnamed_device 25.4 MiB 0.84 1003 12186 4031 5776 2379 64.4 MiB 0.17 0.00 4.3859 -150.052 -4.3859 4.3859 0.98 0.00123257 0.00114375 0.0896755 0.0835336 44 3453 49 6.99608e+06 264882 787024. 2723.27 3.74 0.410234 0.371738 27778 195446 -1 2318 27 2297 3271 226559 53661 3.9815 3.9815 -150.767 -3.9815 0 0 997811. 3452.63 0.30 0.13 0.28 -1 -1 0.30 0.0644313 0.058354 106 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.47 vpr 63.55 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30228 -1 -1 11 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65076 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 24.8 MiB 1.13 879 8134 2173 5187 774 63.6 MiB 0.10 0.00 3.62727 -120.528 -3.62727 3.62727 0.98 0.000932659 0.000866969 0.0514686 0.0478548 36 2331 26 6.99608e+06 161872 648988. 2245.63 3.68 0.256735 0.230921 26050 158493 -1 2081 21 1378 2008 181926 38142 3.38372 3.38372 -123.987 -3.38372 0 0 828058. 2865.25 0.25 0.09 0.22 -1 -1 0.25 0.0388726 0.0350195 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 11.26 vpr 64.18 MiB -1 -1 0.26 18376 1 0.03 -1 -1 30588 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65724 31 32 370 297 1 227 80 17 17 289 -1 unnamed_device 25.1 MiB 0.94 902 12292 4688 5816 1788 64.2 MiB 0.16 0.00 3.65599 -121.612 -3.65599 3.65599 0.98 0.00118304 0.00110044 0.0879696 0.0817777 52 2826 43 6.99608e+06 250167 926341. 3205.33 6.29 0.537903 0.485169 29218 227130 -1 2096 27 1843 2541 229283 72229 3.66566 3.66566 -129.331 -3.66566 0 0 1.14541e+06 3963.36 0.33 0.14 0.34 -1 -1 0.33 0.0612391 0.055428 101 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 8.77 vpr 64.29 MiB -1 -1 0.26 18436 1 0.03 -1 -1 30368 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65828 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 25.2 MiB 0.91 1028 12636 4939 6150 1547 64.3 MiB 0.18 0.00 5.24621 -161.935 -5.24621 5.24621 0.98 0.00119656 0.00111318 0.0924073 0.0859847 48 3288 37 6.99608e+06 250167 865456. 2994.66 3.84 0.372853 0.337797 28354 207349 -1 2451 24 2516 3561 287480 67308 5.31919 5.31919 -173.898 -5.31919 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0572444 0.0518601 104 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 12.64 vpr 64.61 MiB -1 -1 0.27 18344 1 0.03 -1 -1 30512 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66160 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 25.7 MiB 3.55 968 11981 4242 5473 2266 64.6 MiB 0.17 0.00 5.22958 -165.475 -5.22958 5.22958 0.98 0.00121237 0.0011273 0.0866899 0.0806152 44 3425 30 6.99608e+06 264882 787024. 2723.27 5.12 0.487433 0.44009 27778 195446 -1 2446 20 1901 2757 224609 49296 4.9985 4.9985 -165.985 -4.9985 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0491497 0.0446112 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.60 vpr 63.94 MiB -1 -1 0.26 18288 1 0.03 -1 -1 30616 -1 -1 16 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65472 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 25.0 MiB 2.02 882 12585 5245 6747 593 63.9 MiB 0.16 0.00 3.91372 -127.244 -3.91372 3.91372 0.98 0.00113645 0.00105651 0.0881124 0.081969 46 3109 25 6.99608e+06 235451 828058. 2865.25 3.63 0.33614 0.304688 28066 200906 -1 2187 19 1697 2264 184096 42170 3.32256 3.32256 -122.812 -3.32256 0 0 1.01997e+06 3529.29 0.30 0.10 0.29 -1 -1 0.30 0.0439833 0.0398995 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.42 vpr 63.73 MiB -1 -1 0.11 18456 1 0.03 -1 -1 30540 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65264 32 32 291 242 1 177 78 17 17 289 -1 unnamed_device 25.2 MiB 1.16 853 9872 3567 4389 1916 63.7 MiB 0.13 0.00 4.1407 -116.233 -4.1407 4.1407 0.99 0.000981463 0.000912327 0.0626781 0.0583664 40 2422 29 6.99608e+06 206020 706193. 2443.58 2.57 0.286815 0.258686 26914 176310 -1 2124 22 1494 2078 187631 41454 3.93031 3.93031 -125.21 -3.93031 0 0 926341. 3205.33 0.27 0.10 0.28 -1 -1 0.27 0.0450456 0.0407219 72 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.72 vpr 64.68 MiB -1 -1 0.27 18496 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66236 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 25.8 MiB 1.41 1445 14965 4188 8952 1825 64.7 MiB 0.23 0.00 4.92896 -170.692 -4.92896 4.92896 0.98 0.00144295 0.00134407 0.119873 0.111671 40 3834 45 6.99608e+06 309029 706193. 2443.58 4.17 0.479222 0.434834 26914 176310 -1 3348 31 3215 4672 516964 161144 4.92794 4.92794 -180.308 -4.92794 0 0 926341. 3205.33 0.27 0.25 0.26 -1 -1 0.27 0.0837637 0.0758529 129 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 11.99 vpr 63.51 MiB -1 -1 0.24 17892 1 0.03 -1 -1 30276 -1 -1 11 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65036 31 32 261 225 1 160 74 17 17 289 -1 unnamed_device 24.7 MiB 3.01 542 11234 3813 5447 1974 63.5 MiB 0.12 0.00 2.9921 -96.3096 -2.9921 2.9921 0.99 0.00088352 0.000821334 0.0668604 0.062167 46 1854 26 6.99608e+06 161872 828058. 2865.25 5.13 0.346722 0.31118 28066 200906 -1 1255 26 1345 1763 113594 30759 3.20727 3.20727 -101.113 -3.20727 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0445087 0.0400446 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 20.26 vpr 64.02 MiB -1 -1 0.26 18280 1 0.03 -1 -1 30268 -1 -1 15 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65556 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 25.0 MiB 0.77 912 12694 5540 6748 406 64.0 MiB 0.17 0.00 4.60267 -146.673 -4.60267 4.60267 0.98 0.00112018 0.00104248 0.0901513 0.0838868 44 3068 37 6.99608e+06 220735 787024. 2723.27 15.42 0.576888 0.519747 27778 195446 -1 2043 22 1757 2572 212439 51917 4.1482 4.1482 -135.728 -4.1482 0 0 997811. 3452.63 0.30 0.11 0.28 -1 -1 0.30 0.0481954 0.0435759 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.32 vpr 64.52 MiB -1 -1 0.25 18512 1 0.03 -1 -1 30516 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66064 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 25.4 MiB 1.39 945 13430 5690 7168 572 64.5 MiB 0.17 0.00 3.78685 -125.526 -3.78685 3.78685 0.98 0.00114288 0.00105324 0.0928052 0.0862241 46 2930 43 6.99608e+06 220735 828058. 2865.25 4.02 0.367554 0.332382 28066 200906 -1 2028 22 1430 2189 157197 38942 3.51256 3.51256 -127.528 -3.51256 0 0 1.01997e+06 3529.29 0.30 0.06 0.29 -1 -1 0.30 0.0321063 0.0289894 91 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 9.93 vpr 63.66 MiB -1 -1 0.24 17684 1 0.03 -1 -1 30184 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65184 32 32 291 230 1 167 80 17 17 289 -1 unnamed_device 24.9 MiB 0.84 698 11776 4112 5155 2509 63.7 MiB 0.14 0.00 4.31309 -119.613 -4.31309 4.31309 1.01 0.00101414 0.000943782 0.0747416 0.0696316 42 2652 48 6.99608e+06 235451 744469. 2576.02 5.22 0.454054 0.409342 27202 183097 -1 1940 22 1375 2321 186454 45416 3.97106 3.97106 -127.564 -3.97106 0 0 949917. 3286.91 0.28 0.10 0.26 -1 -1 0.28 0.0430994 0.038937 69 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 9.61 vpr 64.01 MiB -1 -1 0.24 18348 1 0.03 -1 -1 30400 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65548 32 32 353 287 1 205 79 17 17 289 -1 unnamed_device 25.0 MiB 1.27 862 12585 4753 5708 2124 64.0 MiB 0.17 0.00 4.19608 -127.939 -4.19608 4.19608 0.98 0.00114135 0.00106111 0.0879195 0.0817503 38 3107 28 6.99608e+06 220735 678818. 2348.85 4.51 0.341739 0.30913 26626 170182 -1 2140 21 1672 2270 187127 42272 3.26857 3.26857 -120.285 -3.26857 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0477145 0.0432008 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.44 vpr 64.03 MiB -1 -1 0.24 18280 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65568 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 25.0 MiB 1.58 946 11402 4534 5168 1700 64.0 MiB 0.16 0.00 3.61665 -125.974 -3.61665 3.61665 0.98 0.00116317 0.00108029 0.0820081 0.0762419 40 3439 35 6.99608e+06 220735 706193. 2443.58 3.99 0.353195 0.319444 26914 176310 -1 2757 21 1837 2829 249719 57111 4.09561 4.09561 -147.636 -4.09561 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0491944 0.0445754 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 9.07 vpr 64.22 MiB -1 -1 0.24 18300 1 0.03 -1 -1 30420 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65760 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 25.1 MiB 2.15 1092 13152 5486 7241 425 64.2 MiB 0.18 0.00 3.81447 -129.917 -3.81447 3.81447 0.98 0.00125481 0.00117075 0.0985289 0.0916801 44 3502 27 6.99608e+06 235451 787024. 2723.27 2.96 0.335179 0.304336 27778 195446 -1 2314 21 1863 2544 190468 44105 3.32751 3.32751 -127.037 -3.32751 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0513458 0.0465982 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.03 vpr 64.11 MiB -1 -1 0.24 18012 1 0.03 -1 -1 30404 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65648 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 25.2 MiB 1.03 751 10204 3498 4965 1741 64.1 MiB 0.13 0.00 4.48113 -123.015 -4.48113 4.48113 0.98 0.00103284 0.000959852 0.0661702 0.0614379 40 2783 41 6.99608e+06 206020 706193. 2443.58 3.20 0.315078 0.284159 26914 176310 -1 2099 25 1472 2247 164464 39876 4.13042 4.13042 -129.536 -4.13042 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0508501 0.0458584 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.39 vpr 63.98 MiB -1 -1 0.14 18280 1 0.03 -1 -1 30248 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65512 32 32 319 257 1 193 77 17 17 289 -1 unnamed_device 25.1 MiB 1.82 789 11161 3588 5346 2227 64.0 MiB 0.14 0.00 4.08638 -125.107 -4.08638 4.08638 0.98 0.00106481 0.0009908 0.0759298 0.0706722 40 2536 26 6.99608e+06 191304 706193. 2443.58 2.82 0.306408 0.277048 26914 176310 -1 2127 28 2000 2679 271111 86074 4.15072 4.15072 -135.913 -4.15072 0 0 926341. 3205.33 0.27 0.15 0.26 -1 -1 0.27 0.0567485 0.0512394 81 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.09 vpr 64.06 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30372 -1 -1 16 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65596 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 24.9 MiB 0.86 960 12923 4769 6489 1665 64.1 MiB 0.18 0.00 4.33001 -137.493 -4.33001 4.33001 0.97 0.0012112 0.00111892 0.0947583 0.088089 46 3289 28 6.99608e+06 235451 828058. 2865.25 3.25 0.358015 0.323929 28066 200906 -1 2287 24 1917 2818 188235 45191 4.18096 4.18096 -135.396 -4.18096 0 0 1.01997e+06 3529.29 0.30 0.11 0.30 -1 -1 0.30 0.055803 0.050547 99 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.52 vpr 64.29 MiB -1 -1 0.26 18448 1 0.03 -1 -1 30456 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65828 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 25.3 MiB 1.04 1085 14872 6411 8186 275 64.3 MiB 0.20 0.00 3.95718 -133.91 -3.95718 3.95718 0.98 0.0012158 0.00112998 0.108507 0.100883 46 3487 26 6.99608e+06 235451 828058. 2865.25 3.47 0.371173 0.33654 28066 200906 -1 2608 24 2336 3382 272795 58703 3.64351 3.64351 -137.07 -3.64351 0 0 1.01997e+06 3529.29 0.30 0.13 0.29 -1 -1 0.30 0.0567882 0.0513506 106 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 9.42 vpr 63.41 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30604 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64936 32 32 251 219 1 151 74 17 17 289 -1 unnamed_device 24.7 MiB 0.57 584 9994 4131 5517 346 63.4 MiB 0.11 0.00 3.27254 -98.1459 -3.27254 3.27254 0.98 0.000870234 0.000808652 0.0583261 0.0541931 46 1761 20 6.99608e+06 147157 828058. 2865.25 5.08 0.315668 0.28307 28066 200906 -1 1359 17 947 1332 86891 23149 2.74422 2.74422 -97.0532 -2.74422 0 0 1.01997e+06 3529.29 0.30 0.07 0.29 -1 -1 0.30 0.0318421 0.0287155 60 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 20.00 vpr 64.11 MiB -1 -1 0.25 18296 1 0.03 -1 -1 30224 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65648 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 25.1 MiB 0.87 872 9036 3191 4723 1122 64.1 MiB 0.12 0.00 3.89113 -140.293 -3.89113 3.89113 0.99 0.00108032 0.00100363 0.0610453 0.0567446 40 3362 48 6.99608e+06 220735 706193. 2443.58 15.33 0.563472 0.50495 26914 176310 -1 2696 28 2412 3279 390045 86777 4.07461 4.07461 -154.183 -4.07461 0 0 926341. 3205.33 0.27 0.18 0.26 -1 -1 0.27 0.0633515 0.0571242 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 11.65 vpr 64.49 MiB -1 -1 0.26 18168 1 0.03 -1 -1 30516 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66040 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 25.4 MiB 0.89 920 11776 4854 6254 668 64.5 MiB 0.17 0.00 4.78758 -149.316 -4.78758 4.78758 0.98 0.00128771 0.00119784 0.091546 0.0852469 62 2452 29 6.99608e+06 235451 1.05005e+06 3633.38 6.66 0.572141 0.517658 30946 263737 -1 1822 21 1704 2663 158781 36830 4.77446 4.77446 -144.133 -4.77446 0 0 1.30136e+06 4502.97 0.37 0.10 0.42 -1 -1 0.37 0.0539423 0.0490235 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.24 vpr 64.38 MiB -1 -1 0.23 18384 1 0.03 -1 -1 30552 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65920 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 25.4 MiB 0.64 871 12247 5090 6619 538 64.4 MiB 0.15 0.00 4.21616 -136.097 -4.21616 4.21616 0.98 0.00112199 0.00104331 0.0846909 0.0788136 46 2839 25 6.99608e+06 220735 828058. 2865.25 2.98 0.32665 0.295965 28066 200906 -1 2030 24 1858 2470 171812 40720 3.23221 3.23221 -128.363 -3.23221 0 0 1.01997e+06 3529.29 0.27 0.06 0.16 -1 -1 0.27 0.022607 0.0203165 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 10.80 vpr 63.77 MiB -1 -1 0.24 18152 1 0.03 -1 -1 30608 -1 -1 20 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65300 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 25.2 MiB 1.72 641 12008 4694 6159 1155 63.8 MiB 0.13 0.00 3.67135 -114.032 -3.67135 3.67135 0.98 0.000916344 0.00084815 0.065161 0.0604841 42 2249 45 6.99608e+06 294314 744469. 2576.02 5.32 0.418105 0.375159 27202 183097 -1 1674 22 1199 1897 155069 40573 3.35286 3.35286 -120.253 -3.35286 0 0 949917. 3286.91 0.28 0.09 0.27 -1 -1 0.28 0.0404603 0.0364631 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 25.24 vpr 64.56 MiB -1 -1 0.26 18612 1 0.03 -1 -1 30452 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66108 32 32 431 332 1 260 82 17 17 289 -1 unnamed_device 25.5 MiB 1.00 1432 14144 5603 7508 1033 64.6 MiB 0.23 0.00 6.40939 -192.555 -6.40939 6.40939 0.98 0.00137961 0.00128499 0.113827 0.106049 40 4374 42 6.99608e+06 264882 706193. 2443.58 20.07 0.74219 0.670341 26914 176310 -1 3752 41 4350 6374 729258 188176 5.89354 5.89354 -206.278 -5.89354 0 0 926341. 3205.33 0.27 0.31 0.26 -1 -1 0.27 0.102985 0.093087 116 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 9.77 vpr 63.91 MiB -1 -1 0.24 18288 1 0.03 -1 -1 30528 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65444 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 25.0 MiB 0.66 852 9374 3899 5203 272 63.9 MiB 0.13 0.00 4.9189 -148.418 -4.9189 4.9189 0.98 0.00112452 0.00104586 0.0669442 0.0622614 38 3151 49 6.99608e+06 206020 678818. 2348.85 5.34 0.352203 0.317942 26626 170182 -1 2089 22 1711 2308 149749 34317 4.16265 4.16265 -143.87 -4.16265 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0484232 0.0438508 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 9.06 vpr 63.26 MiB -1 -1 0.23 17844 1 0.03 -1 -1 30564 -1 -1 13 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64780 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.7 MiB 0.28 535 10509 4368 5789 352 63.3 MiB 0.11 0.00 2.922 -91.3971 -2.922 2.922 0.98 0.000823284 0.000764844 0.0553353 0.0514574 44 1884 32 6.99608e+06 191304 787024. 2723.27 4.99 0.357223 0.319831 27778 195446 -1 1299 19 928 1416 93766 23793 2.98192 2.98192 -95.2828 -2.98192 0 0 997811. 3452.63 0.29 0.07 0.28 -1 -1 0.29 0.0318455 0.0286658 51 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 20.70 vpr 64.19 MiB -1 -1 0.26 18180 1 0.03 -1 -1 30272 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65732 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 25.2 MiB 1.44 937 15044 6237 7403 1404 64.2 MiB 0.19 0.00 4.79375 -134.609 -4.79375 4.79375 0.98 0.00115711 0.00107681 0.104568 0.0973155 40 3776 46 6.99608e+06 235451 706193. 2443.58 15.36 0.586486 0.52832 26914 176310 -1 2711 22 1958 3106 270888 63156 5.00786 5.00786 -154.748 -5.00786 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0506617 0.0459508 85 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 7.39 vpr 63.51 MiB -1 -1 0.22 17832 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65036 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.8 MiB 0.81 492 10204 2692 5791 1721 63.5 MiB 0.11 0.00 2.966 -96.76 -2.966 2.966 0.99 0.000870399 0.00080919 0.0560298 0.0521107 38 1637 41 6.99608e+06 206020 678818. 2348.85 2.89 0.267471 0.240567 26626 170182 -1 1186 20 1041 1532 88685 23103 3.19527 3.19527 -106.952 -3.19527 0 0 902133. 3121.57 0.26 0.07 0.24 -1 -1 0.26 0.0350652 0.0316201 57 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 8.02 vpr 63.64 MiB -1 -1 0.24 18128 1 0.03 -1 -1 30220 -1 -1 13 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65172 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 25.1 MiB 0.66 683 11293 4547 5793 953 63.6 MiB 0.13 0.00 3.84183 -118.192 -3.84183 3.84183 0.98 0.00093005 0.000864489 0.0693118 0.0644373 38 2305 35 6.99608e+06 191304 678818. 2348.85 3.56 0.284962 0.256665 26626 170182 -1 1463 23 1279 1688 116285 27143 3.21021 3.21021 -111.722 -3.21021 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0420524 0.0379067 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.60 vpr 64.20 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30440 -1 -1 18 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65744 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 25.1 MiB 0.82 978 11064 4603 5811 650 64.2 MiB 0.15 0.00 4.04056 -127.05 -4.04056 4.04056 1.00 0.00113291 0.00105354 0.0783794 0.0727875 44 3077 47 6.99608e+06 264882 787024. 2723.27 3.13 0.367948 0.332599 27778 195446 -1 2187 22 1705 2513 184840 42209 4.1173 4.1173 -133.656 -4.1173 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.049605 0.0449343 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.47 vpr 64.02 MiB -1 -1 0.24 18308 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65552 32 32 358 289 1 219 79 17 17 289 -1 unnamed_device 25.0 MiB 1.44 980 14444 5001 7107 2336 64.0 MiB 0.19 0.00 4.54753 -143.667 -4.54753 4.54753 1.00 0.00115429 0.00107379 0.102279 0.0951618 44 2962 42 6.99608e+06 220735 787024. 2723.27 5.08 0.520132 0.469832 27778 195446 -1 2264 22 1620 2245 155650 34406 4.25735 4.25735 -149.168 -4.25735 0 0 997811. 3452.63 0.29 0.10 0.28 -1 -1 0.29 0.0502921 0.0455441 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.23 vpr 64.02 MiB -1 -1 0.25 18156 1 0.03 -1 -1 30388 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65560 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 25.2 MiB 3.00 1118 12585 4147 6271 2167 64.0 MiB 0.17 0.00 4.58917 -148.796 -4.58917 4.58917 0.98 0.00114389 0.00106418 0.0889348 0.0827173 40 2857 47 6.99608e+06 220735 706193. 2443.58 3.30 0.376354 0.340519 26914 176310 -1 2688 24 2083 3015 303702 66180 4.43555 4.43555 -155.461 -4.43555 0 0 926341. 3205.33 0.30 0.14 0.25 -1 -1 0.30 0.0539286 0.0488592 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.18 vpr 63.57 MiB -1 -1 0.24 18012 1 0.03 -1 -1 30228 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65096 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 25.0 MiB 1.73 646 11767 4636 5730 1401 63.6 MiB 0.13 0.00 4.03444 -123.732 -4.03444 4.03444 0.98 0.000926033 0.000860394 0.0719297 0.0668855 46 2499 44 6.99608e+06 161872 828058. 2865.25 3.62 0.300665 0.270838 28066 200906 -1 1601 24 1093 1444 112101 28746 3.60916 3.60916 -120.305 -3.60916 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0431059 0.0388535 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 7.12 vpr 64.12 MiB -1 -1 0.26 18388 1 0.03 -1 -1 30520 -1 -1 14 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65664 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 25.1 MiB 0.82 795 12791 5222 5710 1859 64.1 MiB 0.16 0.00 3.72927 -124.319 -3.72927 3.72927 0.98 0.00101613 0.000943579 0.083084 0.0772132 44 2555 24 6.99608e+06 206020 787024. 2723.27 2.43 0.299825 0.270766 27778 195446 -1 1903 21 1585 2196 164169 37356 3.23751 3.23751 -120.218 -3.23751 0 0 997811. 3452.63 0.29 0.09 0.28 -1 -1 0.29 0.0423173 0.0382406 86 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 10.44 vpr 64.06 MiB -1 -1 0.24 18340 1 0.03 -1 -1 30444 -1 -1 19 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65600 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 25.1 MiB 1.19 844 13731 4372 6963 2396 64.1 MiB 0.17 0.00 3.3817 -109.729 -3.3817 3.3817 1.01 0.00106648 0.000991793 0.0895857 0.0833112 44 2363 26 6.99608e+06 279598 787024. 2723.27 5.34 0.485928 0.437285 27778 195446 -1 1926 20 1562 2217 149042 35934 3.17627 3.17627 -112.981 -3.17627 0 0 997811. 3452.63 0.30 0.09 0.28 -1 -1 0.30 0.0429594 0.0389072 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 7.31 vpr 63.45 MiB -1 -1 0.23 18168 1 0.03 -1 -1 30536 -1 -1 17 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64972 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 24.9 MiB 0.52 703 11976 4217 5816 1943 63.4 MiB 0.13 0.00 3.6892 -102.61 -3.6892 3.6892 0.98 0.000937355 0.000871778 0.0714735 0.0664674 40 1979 24 6.99608e+06 250167 706193. 2443.58 3.03 0.270999 0.244607 26914 176310 -1 1788 20 1393 2038 185500 46517 3.40992 3.40992 -110.879 -3.40992 0 0 926341. 3205.33 0.27 0.09 0.26 -1 -1 0.27 0.0378145 0.0341398 71 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.02 vpr 64.22 MiB -1 -1 0.26 18204 1 0.03 -1 -1 30492 -1 -1 15 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65760 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 25.2 MiB 0.77 796 9042 3476 4677 889 64.2 MiB 0.12 0.00 4.23312 -132.968 -4.23312 4.23312 0.98 0.00102199 0.000949759 0.0596589 0.0554983 44 2499 21 6.99608e+06 220735 787024. 2723.27 2.41 0.271104 0.244415 27778 195446 -1 1818 19 1693 2264 174640 40064 3.8622 3.8622 -131.183 -3.8622 0 0 997811. 3452.63 0.29 0.09 0.28 -1 -1 0.29 0.0396223 0.0358623 88 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.08 vpr 64.19 MiB -1 -1 0.26 18264 1 0.03 -1 -1 30228 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65732 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 25.1 MiB 0.82 932 13524 5742 7441 341 64.2 MiB 0.17 0.00 3.33761 -122.631 -3.33761 3.33761 1.00 0.00103771 0.000961478 0.0900295 0.0836518 46 2625 31 6.99608e+06 206020 828058. 2865.25 3.32 0.32814 0.296538 28066 200906 -1 1967 20 1735 2360 154633 36530 3.29366 3.29366 -128.148 -3.29366 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.043463 0.0393455 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.78 vpr 63.45 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30440 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64968 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.6 MiB 0.44 734 13911 5021 5993 2897 63.4 MiB 0.14 0.00 4.52238 -122.271 -4.52238 4.52238 0.98 0.00101322 0.00094331 0.0764051 0.0711324 44 2486 24 6.99608e+06 353176 787024. 2723.27 2.50 0.295257 0.267334 27778 195446 -1 1753 22 1107 1911 117785 28974 4.02847 4.02847 -125.098 -4.02847 0 0 997811. 3452.63 0.30 0.09 0.28 -1 -1 0.30 0.0443484 0.0401374 74 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 7.82 vpr 64.01 MiB -1 -1 0.24 18384 1 0.03 -1 -1 30480 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65548 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 25.0 MiB 1.11 829 10204 4200 5555 449 64.0 MiB 0.14 0.00 4.50341 -148.643 -4.50341 4.50341 0.98 0.00115103 0.00107049 0.0742757 0.0690585 50 2843 47 6.99608e+06 206020 902133. 3121.57 2.76 0.343642 0.311051 28642 213929 -1 2175 28 1827 2688 259996 80508 4.15065 4.15065 -146.851 -4.15065 0 0 1.08113e+06 3740.92 0.31 0.15 0.32 -1 -1 0.31 0.0614595 0.0556085 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 10.73 vpr 64.62 MiB -1 -1 0.26 18192 1 0.03 -1 -1 30412 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66172 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 25.8 MiB 0.82 1083 14606 4862 7486 2258 64.6 MiB 0.22 0.00 5.11069 -165.7 -5.11069 5.11069 0.99 0.00122467 0.00113914 0.108602 0.100918 46 3364 24 6.99608e+06 250167 828058. 2865.25 5.87 0.518028 0.468547 28066 200906 -1 2534 21 2116 2956 225141 49904 5.26564 5.26564 -173.88 -5.26564 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0513989 0.0466457 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.14 vpr 64.19 MiB -1 -1 0.26 18384 1 0.03 -1 -1 30348 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65728 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 25.2 MiB 0.91 1036 9181 3131 4714 1336 64.2 MiB 0.14 0.00 4.33426 -143.87 -4.33426 4.33426 1.00 0.00122976 0.00114347 0.0702504 0.0653788 56 3074 36 6.99608e+06 250167 973134. 3367.25 3.07 0.357784 0.323943 29794 239141 -1 2366 21 2093 2977 247452 55602 3.9953 3.9953 -147.474 -3.9953 0 0 1.19926e+06 4149.71 0.34 0.12 0.39 -1 -1 0.34 0.0521131 0.0472994 104 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 13.31 vpr 63.58 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30416 -1 -1 13 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65104 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 25.0 MiB 0.88 635 9713 3107 4623 1983 63.6 MiB 0.12 0.00 4.08266 -116.386 -4.08266 4.08266 0.98 0.000913654 0.000849215 0.0587963 0.0546661 40 2071 30 6.99608e+06 191304 706193. 2443.58 8.69 0.456545 0.408579 26914 176310 -1 1716 22 1328 1951 175190 41087 3.20221 3.20221 -115.188 -3.20221 0 0 926341. 3205.33 0.27 0.10 0.26 -1 -1 0.27 0.0398105 0.0358371 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.87 vpr 64.30 MiB -1 -1 0.26 18256 1 0.03 -1 -1 30560 -1 -1 18 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65840 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 25.4 MiB 0.89 883 12120 4402 5485 2233 64.3 MiB 0.16 0.00 5.1699 -158.063 -5.1699 5.1699 0.98 0.00119117 0.00110835 0.0874299 0.0813101 46 3426 40 6.99608e+06 264882 828058. 2865.25 2.94 0.339544 0.307503 28066 200906 -1 2194 38 2866 4080 283042 70189 5.0638 5.0638 -165.854 -5.0638 0 0 1.01997e+06 3529.29 0.31 0.19 0.29 -1 -1 0.31 0.0910351 0.0821953 104 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.49 vpr 64.01 MiB -1 -1 0.26 18400 1 0.03 -1 -1 30396 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65544 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 25.0 MiB 0.72 788 9374 3088 4347 1939 64.0 MiB 0.12 0.00 4.91711 -144.854 -4.91711 4.91711 0.98 0.00112003 0.00104204 0.0664761 0.0618828 54 2219 27 6.99608e+06 206020 949917. 3286.91 2.80 0.310935 0.28134 29506 232905 -1 1623 21 1268 2064 134642 35067 4.06535 4.06535 -135.173 -4.06535 0 0 1.17392e+06 4061.99 0.34 0.10 0.36 -1 -1 0.34 0.0471496 0.0427631 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 10.88 vpr 64.14 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30324 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65684 31 32 340 275 1 196 80 17 17 289 -1 unnamed_device 25.1 MiB 1.11 828 14528 6197 7823 508 64.1 MiB 0.18 0.00 5.0524 -144.146 -5.0524 5.0524 0.98 0.00110889 0.00103161 0.0969418 0.0902002 38 3388 46 6.99608e+06 250167 678818. 2348.85 5.90 0.3807 0.344624 26626 170182 -1 2345 24 1752 2564 202020 49684 4.72355 4.72355 -153.68 -4.72355 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0517519 0.0467802 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.76 vpr 64.35 MiB -1 -1 0.27 18252 1 0.03 -1 -1 30284 -1 -1 19 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65892 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 25.5 MiB 1.38 998 14606 5096 6874 2636 64.3 MiB 0.19 0.00 4.3242 -135.003 -4.3242 4.3242 0.98 0.00118645 0.00110389 0.103136 0.0959272 46 3103 25 6.99608e+06 279598 828058. 2865.25 3.41 0.362683 0.328762 28066 200906 -1 2347 23 2167 3023 227414 52990 4.1789 4.1789 -143.24 -4.1789 0 0 1.01997e+06 3529.29 0.30 0.12 0.30 -1 -1 0.30 0.0532873 0.0482024 107 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 22.18 vpr 64.21 MiB -1 -1 0.26 18288 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65756 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 25.1 MiB 1.55 1123 15831 6103 7773 1955 64.2 MiB 0.21 0.00 4.68727 -152.859 -4.68727 4.68727 1.00 0.0011747 0.00109257 0.109242 0.101548 38 3490 46 6.99608e+06 250167 678818. 2348.85 16.64 0.648827 0.584849 26626 170182 -1 2875 24 2085 2998 266143 55848 4.72361 4.72361 -167.51 -4.72361 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0562543 0.0508864 95 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 9.91 vpr 64.57 MiB -1 -1 0.24 18284 1 0.03 -1 -1 30540 -1 -1 20 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66120 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 25.7 MiB 1.99 1106 12156 3661 6482 2013 64.6 MiB 0.17 0.00 3.82165 -125.941 -3.82165 3.82165 0.98 0.00117493 0.00109201 0.0850739 0.0791302 38 3635 44 6.99608e+06 294314 678818. 2348.85 4.06 0.378321 0.34218 26626 170182 -1 2693 22 1932 2533 215951 48264 3.91801 3.91801 -136.384 -3.91801 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0522578 0.0473788 109 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 11.61 vpr 63.41 MiB -1 -1 0.13 17812 1 0.03 -1 -1 30488 -1 -1 10 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64928 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 24.7 MiB 2.16 497 9529 2774 4777 1978 63.4 MiB 0.10 0.00 3.56099 -102.406 -3.56099 3.56099 0.98 0.000863651 0.000802708 0.0556039 0.0517165 54 1169 21 6.99608e+06 147157 949917. 3286.91 5.73 0.342702 0.307655 29506 232905 -1 900 18 824 1231 62105 17310 2.61977 2.61977 -92.0552 -2.61977 0 0 1.17392e+06 4061.99 0.34 0.06 0.36 -1 -1 0.34 0.0320568 0.0289601 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 18.66 vpr 64.29 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30416 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65828 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 25.4 MiB 0.71 934 8831 2712 4206 1913 64.3 MiB 0.13 0.00 5.01054 -157.498 -5.01054 5.01054 0.98 0.00118625 0.00110276 0.0636107 0.0591954 50 2825 46 6.99608e+06 250167 902133. 3121.57 13.94 0.621174 0.558752 28642 213929 -1 2142 23 2054 2901 240777 56747 4.61914 4.61914 -156.129 -4.61914 0 0 1.08113e+06 3740.92 0.32 0.13 0.36 -1 -1 0.32 0.0542482 0.0491853 100 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 10.73 vpr 64.50 MiB -1 -1 0.26 18364 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66048 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 25.6 MiB 0.91 1037 11456 4156 5041 2259 64.5 MiB 0.17 0.00 4.93306 -166.082 -4.93306 4.93306 0.98 0.00126071 0.00117306 0.0860392 0.0800667 46 3623 28 6.99608e+06 250167 828058. 2865.25 5.79 0.51456 0.464891 28066 200906 -1 2615 23 2572 3555 280949 62684 4.80835 4.80835 -172.323 -4.80835 0 0 1.01997e+06 3529.29 0.30 0.14 0.31 -1 -1 0.30 0.0575712 0.0522204 109 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 15.38 vpr 63.72 MiB -1 -1 0.25 18040 1 0.03 -1 -1 30396 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65252 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 25.2 MiB 1.23 644 12241 5168 6711 362 63.7 MiB 0.14 0.00 3.78577 -113.025 -3.78577 3.78577 0.98 0.000917163 0.000851813 0.0737741 0.0685675 40 2252 44 6.99608e+06 161872 706193. 2443.58 10.32 0.482765 0.432437 26914 176310 -1 1792 21 1391 1753 148690 36682 3.42981 3.42981 -119.267 -3.42981 0 0 926341. 3205.33 0.27 0.09 0.28 -1 -1 0.27 0.0420576 0.0381095 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 12.90 vpr 63.29 MiB -1 -1 0.24 17632 1 0.03 -1 -1 30472 -1 -1 13 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64812 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.6 MiB 0.90 467 10956 2929 5982 2045 63.3 MiB 0.11 0.00 3.36359 -99.0047 -3.36359 3.36359 0.98 0.000868169 0.000806863 0.061527 0.0572224 44 1559 38 6.99608e+06 191304 787024. 2723.27 8.22 0.443823 0.397456 27778 195446 -1 1063 21 1043 1585 91542 24686 2.88432 2.88432 -100.193 -2.88432 0 0 997811. 3452.63 0.29 0.07 0.28 -1 -1 0.29 0.0363696 0.0327885 57 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 8.27 vpr 63.95 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30568 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65484 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 24.9 MiB 0.87 775 12754 5312 6863 579 63.9 MiB 0.16 0.00 4.29802 -140.072 -4.29802 4.29802 0.97 0.00114788 0.00106782 0.0899736 0.0836845 48 2682 35 6.99608e+06 220735 865456. 2994.66 3.43 0.354431 0.321121 28354 207349 -1 2065 23 2057 2746 217906 55390 4.3824 4.3824 -151.818 -4.3824 0 0 1.05005e+06 3633.38 0.31 0.12 0.33 -1 -1 0.31 0.0601193 0.0550075 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 17.26 vpr 64.07 MiB -1 -1 0.24 18272 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65604 32 32 356 289 1 217 79 17 17 289 -1 unnamed_device 24.9 MiB 1.62 1200 10050 2860 5275 1915 64.1 MiB 0.14 0.00 4.58812 -146.135 -4.58812 4.58812 0.98 0.00114678 0.00106585 0.0716736 0.0666331 38 3288 35 6.99608e+06 220735 678818. 2348.85 11.82 0.539359 0.485451 26626 170182 -1 2676 21 1736 2328 189691 40102 4.55711 4.55711 -153.442 -4.55711 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0479836 0.0434811 95 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 8.78 vpr 64.00 MiB -1 -1 0.25 18132 1 0.03 -1 -1 30188 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65536 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 25.1 MiB 0.47 875 12156 5059 6582 515 64.0 MiB 0.16 0.00 4.64591 -137.502 -4.64591 4.64591 0.98 0.00119263 0.00111051 0.0858162 0.0799157 40 3019 31 6.99608e+06 250167 706193. 2443.58 4.44 0.355194 0.322165 26914 176310 -1 2346 23 1929 3224 251109 59385 4.3322 4.3322 -147.861 -4.3322 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0538272 0.0488601 83 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 11.96 vpr 64.20 MiB -1 -1 0.24 18404 1 0.03 -1 -1 30556 -1 -1 16 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65744 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 25.2 MiB 2.56 811 12860 4243 6447 2170 64.2 MiB 0.16 0.00 3.96842 -107.825 -3.96842 3.96842 0.98 0.00102465 0.000952613 0.0825544 0.0767473 48 2270 21 6.99608e+06 235451 865456. 2994.66 5.44 0.378275 0.341079 28354 207349 -1 1897 34 2022 3140 330811 107485 3.10103 3.10103 -108.139 -3.10103 0 0 1.05005e+06 3633.38 0.31 0.18 0.33 -1 -1 0.31 0.0649045 0.0584146 87 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 10.59 vpr 63.23 MiB -1 -1 0.23 17968 1 0.02 -1 -1 30432 -1 -1 15 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64744 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 24.7 MiB 2.06 489 7669 3106 4069 494 63.2 MiB 0.08 0.00 3.4808 -102.051 -3.4808 3.4808 0.98 0.000863842 0.000803788 0.0452492 0.0420986 40 1797 31 6.99608e+06 220735 706193. 2443.58 4.82 0.339288 0.3036 26914 176310 -1 1446 24 1125 1674 168481 60804 3.73796 3.73796 -118.182 -3.73796 0 0 926341. 3205.33 0.27 0.10 0.25 -1 -1 0.27 0.0399537 0.0358973 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 9.15 vpr 64.61 MiB -1 -1 0.25 18472 1 0.03 -1 -1 30424 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66156 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 25.6 MiB 1.10 1332 12186 3960 6618 1608 64.6 MiB 0.19 0.00 4.21393 -148.472 -4.21393 4.21393 0.98 0.00134228 0.00124955 0.0958306 0.089223 46 3799 22 6.99608e+06 264882 828058. 2865.25 4.03 0.379185 0.34383 28066 200906 -1 3097 24 2383 3670 294383 59839 4.53111 4.53111 -160.169 -4.53111 0 0 1.01997e+06 3529.29 0.29 0.14 0.29 -1 -1 0.29 0.0628177 0.0570086 111 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 8.25 vpr 64.20 MiB -1 -1 0.26 18360 1 0.03 -1 -1 30432 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65740 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 25.1 MiB 0.99 986 5756 1263 4208 285 64.2 MiB 0.05 0.00 5.65424 -162.981 -5.65424 5.65424 0.68 0.000438921 0.000403684 0.0170409 0.0157376 40 2973 27 6.99608e+06 250167 706193. 2443.58 3.79 0.273133 0.245845 26914 176310 -1 2621 21 2249 3147 261312 61317 5.2317 5.2317 -177.232 -5.2317 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0487299 0.0440976 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.26 vpr 64.11 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30552 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65644 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 25.1 MiB 0.90 966 12030 5173 6617 240 64.1 MiB 0.15 0.00 3.99123 -142.235 -3.99123 3.99123 0.98 0.00107174 0.000997197 0.0798191 0.0741859 48 2463 22 6.99608e+06 206020 865456. 2994.66 2.49 0.301736 0.272705 28354 207349 -1 2041 19 1500 1871 154039 34555 3.9706 3.9706 -144.782 -3.9706 0 0 1.05005e+06 3633.38 0.31 0.09 0.31 -1 -1 0.31 0.0407786 0.0369146 91 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 10.10 vpr 64.26 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30556 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65804 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 25.3 MiB 0.75 812 13768 5924 7391 453 64.3 MiB 0.17 0.00 4.14137 -126.485 -4.14137 4.14137 0.98 0.0010863 0.00101018 0.0918556 0.0854406 48 2402 22 6.99608e+06 220735 865456. 2994.66 5.41 0.436437 0.394149 28354 207349 -1 1899 22 1392 1929 134359 31909 3.65342 3.65342 -126.155 -3.65342 0 0 1.05005e+06 3633.38 0.31 0.09 0.31 -1 -1 0.31 0.047123 0.0426602 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 16.30 vpr 64.52 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30564 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66072 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 25.4 MiB 2.28 911 12120 4489 5478 2153 64.5 MiB 0.17 0.00 4.14153 -124.204 -4.14153 4.14153 0.98 0.00120907 0.00112267 0.0896757 0.0834062 42 3288 28 6.99608e+06 250167 744469. 2576.02 10.14 0.592392 0.534588 27202 183097 -1 2262 21 1954 2678 186423 44131 4.37632 4.37632 -136.594 -4.37632 0 0 949917. 3286.91 0.28 0.11 0.27 -1 -1 0.28 0.0508794 0.0461881 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 11.22 vpr 63.99 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30412 -1 -1 18 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65528 30 32 325 268 1 199 80 17 17 289 -1 unnamed_device 25.0 MiB 1.64 860 13496 5767 7196 533 64.0 MiB 0.16 0.00 3.54615 -113.081 -3.54615 3.54615 0.98 0.00105615 0.000981467 0.0856141 0.079592 50 2228 21 6.99608e+06 264882 902133. 3121.57 5.66 0.449108 0.404691 28642 213929 -1 1889 20 1376 2118 152438 34458 3.22096 3.22096 -109.969 -3.22096 0 0 1.08113e+06 3740.92 0.32 0.09 0.32 -1 -1 0.32 0.0421572 0.0381506 89 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.16 vpr 64.16 MiB -1 -1 0.25 18272 1 0.03 -1 -1 30408 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65696 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 25.2 MiB 0.86 937 9042 3197 4114 1731 64.2 MiB 0.13 0.00 4.39601 -145.139 -4.39601 4.39601 0.93 0.00115844 0.00107779 0.0664052 0.061855 46 3344 42 6.99608e+06 206020 828058. 2865.25 4.39 0.35073 0.316945 28066 200906 -1 2528 23 2074 3137 261098 59986 4.68751 4.68751 -148.977 -4.68751 0 0 1.01997e+06 3529.29 0.30 0.13 0.29 -1 -1 0.30 0.052115 0.047231 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 10.38 vpr 64.43 MiB -1 -1 0.25 18400 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65976 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 25.6 MiB 2.34 985 11260 4054 5703 1503 64.4 MiB 0.16 0.00 3.75091 -129.281 -3.75091 3.75091 0.98 0.00123794 0.00115182 0.0843415 0.078476 40 3147 36 6.99608e+06 235451 706193. 2443.58 4.12 0.373803 0.338332 26914 176310 -1 2505 22 2295 3108 261214 60342 3.60911 3.60911 -136.86 -3.60911 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0542502 0.0492658 103 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.71 vpr 63.54 MiB -1 -1 0.23 18112 1 0.03 -1 -1 30392 -1 -1 14 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65064 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 25.0 MiB 1.89 580 10345 3835 4839 1671 63.5 MiB 0.12 0.00 4.0374 -114.573 -4.0374 4.0374 0.98 0.00090044 0.000837189 0.0617436 0.0573997 40 1719 27 6.99608e+06 206020 706193. 2443.58 2.08 0.258859 0.233181 26914 176310 -1 1504 23 1588 2011 172352 40587 3.69241 3.69241 -126.494 -3.69241 0 0 926341. 3205.33 0.27 0.09 0.25 -1 -1 0.27 0.0407313 0.0366846 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.90 vpr 64.01 MiB -1 -1 0.24 18296 1 0.03 -1 -1 30432 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65548 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 25.1 MiB 1.02 710 11200 4654 6133 413 64.0 MiB 0.13 0.00 4.05854 -127.727 -4.05854 4.05854 0.98 0.000997511 0.00092608 0.0711655 0.066116 46 2302 47 6.99608e+06 206020 828058. 2865.25 3.03 0.297553 0.268321 28066 200906 -1 1679 22 1350 1843 149386 35522 3.6419 3.6419 -128.257 -3.6419 0 0 1.01997e+06 3529.29 0.30 0.09 0.29 -1 -1 0.30 0.0434132 0.0391748 81 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 14.46 vpr 63.86 MiB -1 -1 0.25 18256 1 0.03 -1 -1 30484 -1 -1 15 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65396 31 32 326 261 1 192 78 17 17 289 -1 unnamed_device 24.9 MiB 0.73 833 12196 4708 5911 1577 63.9 MiB 0.15 0.00 4.19283 -126.892 -4.19283 4.19283 0.98 0.00107891 0.0010037 0.0823883 0.0766459 38 3044 40 6.99608e+06 220735 678818. 2348.85 9.93 0.530709 0.477879 26626 170182 -1 2029 23 1778 2575 192976 45541 3.98632 3.98632 -135.582 -3.98632 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0487139 0.0440064 80 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 9.98 vpr 63.46 MiB -1 -1 0.23 17920 1 0.03 -1 -1 30424 -1 -1 13 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64984 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 24.7 MiB 1.15 625 8909 3845 4668 396 63.5 MiB 0.10 0.00 3.79267 -110.13 -3.79267 3.79267 0.98 0.000881182 0.000818854 0.0535763 0.0498269 46 1692 33 6.99608e+06 191304 828058. 2865.25 5.04 0.347072 0.311003 28066 200906 -1 1381 17 1040 1338 86764 21628 3.20741 3.20741 -104.83 -3.20741 0 0 1.01997e+06 3529.29 0.30 0.07 0.29 -1 -1 0.30 0.031452 0.0283925 68 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 6.69 vpr 63.55 MiB -1 -1 0.23 17932 1 0.03 -1 -1 30124 -1 -1 12 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65080 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 24.8 MiB 0.78 737 11436 4762 6383 291 63.6 MiB 0.13 0.00 4.0773 -124.169 -4.0773 4.0773 0.98 0.000930777 0.000864969 0.069297 0.0643857 42 2354 38 6.99608e+06 176588 744469. 2576.02 2.14 0.248069 0.223791 27202 183097 -1 1762 22 1409 1878 154390 34988 3.72241 3.72241 -124.695 -3.72241 0 0 949917. 3286.91 0.28 0.09 0.27 -1 -1 0.28 0.0405837 0.0365843 73 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 18.88 vpr 64.21 MiB -1 -1 0.25 18372 1 0.03 -1 -1 30624 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65752 31 32 373 300 1 231 81 17 17 289 -1 unnamed_device 25.1 MiB 0.94 983 14606 5438 6820 2348 64.2 MiB 0.19 0.00 4.38351 -142.434 -4.38351 4.38351 0.98 0.00101417 0.000928928 0.102357 0.0951739 40 3535 48 6.99608e+06 264882 706193. 2443.58 14.01 0.697009 0.627906 26914 176310 -1 2593 21 2253 3031 275563 64041 3.9455 3.9455 -143.253 -3.9455 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0503613 0.0456759 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.70 vpr 63.45 MiB -1 -1 0.24 18228 1 0.03 -1 -1 30432 -1 -1 13 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64968 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 24.9 MiB 0.75 724 12236 4456 5440 2340 63.4 MiB 0.14 0.00 3.48012 -106.772 -3.48012 3.48012 0.98 0.000890892 0.000827509 0.0716881 0.0666244 38 2529 27 6.99608e+06 191304 678818. 2348.85 2.43 0.231491 0.208916 26626 170182 -1 1997 21 1369 1892 184462 38752 3.28337 3.28337 -115.98 -3.28337 0 0 902133. 3121.57 0.24 0.05 0.13 -1 -1 0.24 0.016796 0.0150246 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 7.75 vpr 64.08 MiB -1 -1 0.25 18184 1 0.03 -1 -1 30108 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65616 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 25.1 MiB 1.18 1045 14275 6069 7825 381 64.1 MiB 0.19 0.00 3.51899 -121.288 -3.51899 3.51899 0.98 0.00113072 0.00105176 0.0986461 0.0917625 38 2591 20 6.99608e+06 220735 678818. 2348.85 2.72 0.334282 0.302835 26626 170182 -1 2179 21 1489 2014 143452 31912 3.38206 3.38206 -125.554 -3.38206 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0477834 0.0432963 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 9.13 vpr 64.36 MiB -1 -1 0.28 18296 1 0.03 -1 -1 30472 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65900 31 32 396 325 1 254 83 17 17 289 -1 unnamed_device 25.4 MiB 1.96 1199 11603 3562 6376 1665 64.4 MiB 0.16 0.00 4.92082 -166.246 -4.92082 4.92082 0.98 0.00122558 0.00113958 0.0828063 0.0769761 44 3400 43 6.99608e+06 294314 787024. 2723.27 3.19 0.383799 0.347069 27778 195446 -1 2617 23 2555 3591 267372 56787 4.68559 4.68559 -169.41 -4.68559 0 0 997811. 3452.63 0.29 0.13 0.29 -1 -1 0.29 0.0557085 0.0505051 113 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 11.18 vpr 63.97 MiB -1 -1 0.25 18000 1 0.03 -1 -1 30468 -1 -1 12 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65508 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 25.1 MiB 1.68 739 9516 3925 5290 301 64.0 MiB 0.12 0.00 3.40734 -116.434 -3.40734 3.40734 0.98 0.00100211 0.00093198 0.0611854 0.0568448 48 2381 30 6.99608e+06 176588 865456. 2994.66 5.65 0.40807 0.366039 28354 207349 -1 1838 20 1575 2048 188781 43105 3.54231 3.54231 -125.745 -3.54231 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.0398223 0.0359612 81 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.38 vpr 63.69 MiB -1 -1 0.26 18316 1 0.03 -1 -1 30400 -1 -1 11 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65216 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 25.1 MiB 0.69 715 9871 2522 5750 1599 63.7 MiB 0.12 0.00 3.90682 -124.154 -3.90682 3.90682 0.98 0.000963208 0.000895412 0.0629189 0.0585222 44 2170 39 6.99608e+06 161872 787024. 2723.27 4.84 0.401707 0.360961 27778 195446 -1 1425 23 1172 1730 98002 25824 3.45086 3.45086 -116.987 -3.45086 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.0439242 0.0396935 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 10.61 vpr 63.80 MiB -1 -1 0.23 18224 1 0.03 -1 -1 30264 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65328 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 24.9 MiB 1.79 781 10370 4270 5693 407 63.8 MiB 0.13 0.00 4.09738 -127.458 -4.09738 4.09738 0.98 0.00105811 0.000983739 0.0695854 0.0647483 44 2249 22 6.99608e+06 206020 787024. 2723.27 4.99 0.455545 0.410195 27778 195446 -1 1664 25 1585 2281 135158 33259 4.29616 4.29616 -127.105 -4.29616 0 0 997811. 3452.63 0.30 0.10 0.28 -1 -1 0.30 0.0507022 0.045843 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 7.66 vpr 64.04 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30368 -1 -1 18 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65576 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 25.1 MiB 1.63 781 11233 4679 5976 578 64.0 MiB 0.15 0.00 3.78147 -113.144 -3.78147 3.78147 0.98 0.0010585 0.000984253 0.0743684 0.0692142 42 3035 40 6.99608e+06 264882 744469. 2576.02 2.17 0.28792 0.260256 27202 183097 -1 2046 21 1496 2134 167704 40327 3.20192 3.20192 -108.637 -3.20192 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0440132 0.0397782 88 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 10.68 vpr 64.27 MiB -1 -1 0.26 18216 1 0.03 -1 -1 30548 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65812 32 32 393 312 1 234 80 17 17 289 -1 unnamed_device 25.3 MiB 0.80 1091 9196 3199 4253 1744 64.3 MiB 0.15 0.00 5.35159 -170.536 -5.35159 5.35159 1.01 0.00125126 0.00116455 0.0708303 0.0658915 38 3631 34 6.99608e+06 235451 678818. 2348.85 6.00 0.367382 0.332192 26626 170182 -1 2951 21 2437 3698 312796 65239 4.81174 4.81174 -171.99 -4.81174 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0526626 0.0478317 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 7.24 vpr 63.29 MiB -1 -1 0.23 17920 1 0.03 -1 -1 30296 -1 -1 13 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64808 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.7 MiB 1.62 501 10476 4309 5764 403 63.3 MiB 0.11 0.00 3.34663 -90.271 -3.34663 3.34663 0.99 0.00082635 0.000767673 0.0555335 0.051593 42 1826 23 6.99608e+06 191304 744469. 2576.02 1.93 0.228829 0.205697 27202 183097 -1 1335 23 1045 1583 104649 26577 2.76432 2.76432 -96.8907 -2.76432 0 0 949917. 3286.91 0.28 0.07 0.27 -1 -1 0.28 0.0365784 0.0328479 54 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 19.83 vpr 64.45 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30552 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66000 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 25.5 MiB 1.56 1108 15273 5294 7598 2381 64.5 MiB 0.21 0.00 4.76553 -162.292 -4.76553 4.76553 0.98 0.00127307 0.00118315 0.110143 0.102408 40 3712 39 6.99608e+06 294314 706193. 2443.58 14.26 0.704357 0.635513 26914 176310 -1 2984 24 2713 3390 304874 66956 5.3724 5.3724 -187.638 -5.3724 0 0 926341. 3205.33 0.27 0.14 0.26 -1 -1 0.27 0.0596199 0.0540328 116 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 21.82 vpr 64.28 MiB -1 -1 0.24 18380 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65820 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 25.4 MiB 0.86 1251 14700 5946 7371 1383 64.3 MiB 0.19 0.00 4.39022 -162.789 -4.39022 4.39022 0.98 0.00115444 0.00107232 0.102193 0.0949149 42 3747 45 6.99608e+06 235451 744469. 2576.02 16.91 0.632585 0.569582 27202 183097 -1 2739 25 3348 4217 431937 86909 4.43875 4.43875 -166.692 -4.43875 0 0 949917. 3286.91 0.28 0.17 0.27 -1 -1 0.28 0.0561273 0.0506732 110 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 8.03 vpr 64.15 MiB -1 -1 0.26 18232 1 0.03 -1 -1 30444 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65688 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 25.1 MiB 1.32 938 11571 4789 6322 460 64.1 MiB 0.15 0.00 3.68917 -121.181 -3.68917 3.68917 1.00 0.00115237 0.00107149 0.0824319 0.0766344 44 2968 28 6.99608e+06 220735 787024. 2723.27 2.74 0.336939 0.30485 27778 195446 -1 2064 20 1554 2080 135581 33951 3.46081 3.46081 -123.102 -3.46081 0 0 997811. 3452.63 0.29 0.10 0.29 -1 -1 0.29 0.0467297 0.0423664 94 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 11.40 vpr 64.48 MiB -1 -1 0.26 18460 1 0.03 -1 -1 30436 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66028 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 25.4 MiB 0.85 990 12078 4723 5862 1493 64.5 MiB 0.17 0.00 5.88882 -169.671 -5.88882 5.88882 0.98 0.00129795 0.00120911 0.0964618 0.0898465 50 2712 30 6.99608e+06 220735 902133. 3121.57 6.50 0.591085 0.535246 28642 213929 -1 2057 22 1948 2790 194599 43834 4.7502 4.7502 -158.362 -4.7502 0 0 1.08113e+06 3740.92 0.31 0.12 0.32 -1 -1 0.31 0.0565755 0.0514473 98 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.19 vpr 63.32 MiB -1 -1 0.23 17920 1 0.02 -1 -1 30244 -1 -1 12 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64844 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 24.7 MiB 0.62 491 10769 4564 5875 330 63.3 MiB 0.10 0.00 2.5351 -91.4253 -2.5351 2.5351 0.98 0.000761496 0.000706684 0.0548054 0.050875 38 1693 24 6.99608e+06 176588 678818. 2348.85 1.96 0.214976 0.192854 26626 170182 -1 1229 21 954 1227 109047 25711 2.15648 2.15648 -88.9356 -2.15648 0 0 902133. 3121.57 0.26 0.07 0.24 -1 -1 0.26 0.0314197 0.0281766 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.32 vpr 63.42 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30616 -1 -1 14 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64940 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 24.9 MiB 3.06 632 10636 4449 5807 380 63.4 MiB 0.12 0.00 3.79502 -118.311 -3.79502 3.79502 0.98 0.000953866 0.000886602 0.0660691 0.0614055 38 1779 30 6.99608e+06 206020 678818. 2348.85 2.59 0.278441 0.250831 26626 170182 -1 1475 20 1219 1827 139043 31746 3.19016 3.19016 -118.77 -3.19016 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0390643 0.0352345 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 7.35 vpr 63.96 MiB -1 -1 0.23 18160 1 0.03 -1 -1 30272 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65500 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 25.1 MiB 0.66 759 10756 3879 5476 1401 64.0 MiB 0.13 0.00 3.9181 -124.027 -3.9181 3.9181 0.98 0.000983782 0.000914522 0.0632771 0.0588455 44 2644 24 6.99608e+06 250167 787024. 2723.27 2.82 0.279308 0.251741 27778 195446 -1 1859 22 1405 2276 189000 41877 3.35581 3.35581 -127.501 -3.35581 0 0 997811. 3452.63 0.30 0.10 0.30 -1 -1 0.30 0.0437601 0.0395111 78 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 10.55 vpr 63.13 MiB -1 -1 0.23 17928 1 0.03 -1 -1 30284 -1 -1 16 25 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64648 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 24.4 MiB 0.68 474 9649 4023 4847 779 63.1 MiB 0.09 0.00 3.40263 -78.2884 -3.40263 3.40263 0.99 0.000735724 0.000683101 0.0486825 0.0452086 38 1479 26 6.99608e+06 235451 678818. 2348.85 6.25 0.363972 0.32412 26626 170182 -1 1194 26 979 1363 85599 21838 3.02397 3.02397 -81.3961 -3.02397 0 0 902133. 3121.57 0.28 0.08 0.24 -1 -1 0.28 0.0382711 0.0343647 59 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 11.95 vpr 64.18 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30384 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65724 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 25.4 MiB 2.97 1081 13206 5184 6272 1750 64.2 MiB 0.18 0.00 3.9338 -132.793 -3.9338 3.9338 0.98 0.00119165 0.00110806 0.0929603 0.0864015 46 3514 25 6.99608e+06 250167 828058. 2865.25 5.03 0.479508 0.433066 28066 200906 -1 2633 22 2077 3100 234417 50014 4.14772 4.14772 -140.696 -4.14772 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0523347 0.0473933 103 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 11.82 vpr 64.61 MiB -1 -1 0.27 18280 1 0.03 -1 -1 30404 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66156 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 25.6 MiB 2.13 1014 9872 4028 5433 411 64.6 MiB 0.14 0.00 4.45145 -145.194 -4.45145 4.45145 0.98 0.00127972 0.00119026 0.0744601 0.0692377 48 2797 24 6.99608e+06 279598 865456. 2994.66 5.66 0.478171 0.43182 28354 207349 -1 2247 21 2057 2791 219838 52673 4.30936 4.30936 -147.398 -4.30936 0 0 1.05005e+06 3633.38 0.32 0.12 0.31 -1 -1 0.32 0.0529739 0.0480642 117 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 11.41 vpr 63.74 MiB -1 -1 0.39 18596 14 0.25 -1 -1 32908 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65268 32 32 277 309 1 206 82 17 17 289 -1 unnamed_device 24.7 MiB 1.56 1186 12542 3264 7587 1691 63.7 MiB 0.19 0.00 8.71839 -177.395 -8.71839 8.71839 0.98 0.00151654 0.0014097 0.112597 0.104756 38 3524 46 6.79088e+06 242496 678818. 2348.85 5.54 0.504427 0.45724 25966 169698 -1 2741 18 1308 3845 207710 50230 7.79745 7.79745 -167.939 -7.79745 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0574578 0.0523649 129 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 11.03 vpr 63.76 MiB -1 -1 0.40 18684 14 0.30 -1 -1 32856 -1 -1 20 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65292 30 32 272 304 1 199 82 17 17 289 -1 unnamed_device 24.8 MiB 2.06 1105 6490 1416 4592 482 63.8 MiB 0.11 0.00 7.86897 -158.546 -7.86897 7.86897 0.98 0.00151564 0.00140972 0.0598516 0.0557029 44 2782 20 6.79088e+06 269440 787024. 2723.27 4.66 0.523864 0.473459 27118 194962 -1 2276 16 1065 2839 150328 35025 7.21088 7.21088 -154.617 -7.21088 0 0 997811. 3452.63 0.30 0.10 0.28 -1 -1 0.30 0.0526627 0.0480727 125 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 9.16 vpr 63.69 MiB -1 -1 0.34 18244 11 0.22 -1 -1 32612 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65216 32 32 280 312 1 199 84 17 17 289 -1 unnamed_device 24.6 MiB 1.98 1230 6489 1446 4360 683 63.7 MiB 0.11 0.00 7.04868 -149.017 -7.04868 7.04868 0.99 0.00152529 0.00141823 0.059199 0.0550908 36 3465 22 6.79088e+06 269440 648988. 2245.63 3.08 0.389954 0.352838 25390 158009 -1 2792 15 1146 3577 184038 43505 6.09953 6.09953 -143.296 -6.09953 0 0 828058. 2865.25 0.24 0.10 0.22 -1 -1 0.24 0.0511513 0.0467555 131 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 10.12 vpr 63.70 MiB -1 -1 0.34 18392 12 0.31 -1 -1 33048 -1 -1 23 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65232 29 32 275 307 1 201 84 17 17 289 -1 unnamed_device 24.7 MiB 1.14 1098 14175 4215 7544 2416 63.7 MiB 0.20 0.00 7.26911 -142.27 -7.26911 7.26911 0.97 0.00154543 0.00143775 0.124109 0.115422 44 2822 19 6.79088e+06 309856 787024. 2723.27 4.63 0.584175 0.529852 27118 194962 -1 2252 20 1117 3261 154936 37333 6.58078 6.58078 -136.296 -6.58078 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0635045 0.0578971 137 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 11.27 vpr 63.98 MiB -1 -1 0.37 18244 13 0.27 -1 -1 32960 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65520 32 32 302 334 1 233 86 17 17 289 -1 unnamed_device 24.9 MiB 1.30 1390 8591 1959 5860 772 64.0 MiB 0.15 0.00 7.78026 -168.052 -7.78026 7.78026 0.99 0.00168474 0.0015636 0.0838869 0.0779561 38 4082 40 6.79088e+06 296384 678818. 2348.85 5.58 0.509108 0.461461 25966 169698 -1 3301 26 1700 4808 313592 98506 6.63466 6.63466 -161.444 -6.63466 0 0 902133. 3121.57 0.26 0.20 0.25 -1 -1 0.26 0.0873962 0.0795996 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 9.00 vpr 63.95 MiB -1 -1 0.21 18500 13 0.24 -1 -1 33040 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65488 32 32 292 324 1 217 84 17 17 289 -1 unnamed_device 24.9 MiB 1.42 1328 6672 1413 4852 407 64.0 MiB 0.11 0.00 7.49919 -157.909 -7.49919 7.49919 0.98 0.00161749 0.00150452 0.0637928 0.0593388 46 3395 20 6.79088e+06 269440 828058. 2865.25 3.53 0.404102 0.366097 27406 200422 -1 2724 16 1344 3982 195951 44527 6.38057 6.38057 -145.882 -6.38057 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0559848 0.0511164 137 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 8.72 vpr 63.21 MiB -1 -1 0.31 18100 12 0.19 -1 -1 32888 -1 -1 21 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64732 27 32 229 261 1 171 80 17 17 289 -1 unnamed_device 24.6 MiB 1.33 838 8336 2337 5127 872 63.2 MiB 0.11 0.00 6.93882 -125.075 -6.93882 6.93882 0.98 0.00123712 0.00115022 0.0636882 0.0592181 30 2256 30 6.79088e+06 282912 556674. 1926.21 3.53 0.448224 0.404716 24526 138013 -1 1898 20 1212 2918 137565 34360 5.95423 5.95423 -119.993 -5.95423 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0509797 0.0463368 105 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 21.62 vpr 63.15 MiB -1 -1 0.34 18092 12 0.19 -1 -1 33032 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64668 31 32 229 261 1 184 80 17 17 289 -1 unnamed_device 24.5 MiB 2.06 959 11432 3848 5561 2023 63.2 MiB 0.15 0.00 6.08275 -133.062 -6.08275 6.08275 0.98 0.00121989 0.0011325 0.0849828 0.0788785 38 2727 22 6.79088e+06 229024 678818. 2348.85 15.46 0.574566 0.517896 25966 169698 -1 2226 15 1103 2966 156321 36879 5.39566 5.39566 -127.768 -5.39566 0 0 902133. 3121.57 0.27 0.07 0.24 -1 -1 0.27 0.0278385 0.0254653 104 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 12.19 vpr 63.26 MiB -1 -1 0.35 18268 12 0.16 -1 -1 32712 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64776 31 32 235 267 1 195 83 17 17 289 -1 unnamed_device 24.7 MiB 3.20 1109 11783 3162 6398 2223 63.3 MiB 0.15 0.00 7.00732 -147.482 -7.00732 7.00732 0.98 0.00125993 0.00116983 0.0858883 0.0797514 44 2974 43 6.79088e+06 269440 787024. 2723.27 4.91 0.502122 0.45345 27118 194962 -1 2290 14 1013 2590 135153 31549 6.06069 6.06069 -139.056 -6.06069 0 0 997811. 3452.63 0.31 0.08 0.28 -1 -1 0.31 0.0404149 0.0369678 113 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 15.35 vpr 63.20 MiB -1 -1 0.33 18020 13 0.19 -1 -1 32804 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64720 32 32 250 282 1 180 80 17 17 289 -1 unnamed_device 24.6 MiB 1.85 887 9196 2678 4545 1973 63.2 MiB 0.13 0.00 7.40889 -158.515 -7.40889 7.40889 0.98 0.00135919 0.00126344 0.0769263 0.071523 40 2267 31 6.79088e+06 215552 706193. 2443.58 9.49 0.683909 0.61608 26254 175826 -1 2199 17 1161 2811 163809 42325 6.87063 6.87063 -157.665 -6.87063 0 0 926341. 3205.33 0.27 0.10 0.25 -1 -1 0.27 0.048777 0.0443755 107 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 8.48 vpr 63.09 MiB -1 -1 0.35 18032 12 0.18 -1 -1 32504 -1 -1 19 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64600 30 32 216 248 1 160 81 17 17 289 -1 unnamed_device 24.3 MiB 1.42 683 10756 3090 5343 2323 63.1 MiB 0.13 0.00 7.23574 -141.324 -7.23574 7.23574 0.97 0.00119483 0.0011007 0.0760686 0.0703572 34 2678 38 6.79088e+06 255968 618332. 2139.56 3.06 0.314528 0.284441 25102 150614 -1 1918 29 1014 2431 197788 77779 6.32248 6.32248 -138.724 -6.32248 0 0 787024. 2723.27 0.24 0.14 0.21 -1 -1 0.24 0.0656508 0.0594038 97 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 10.82 vpr 63.18 MiB -1 -1 0.32 18112 12 0.15 -1 -1 32816 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64696 32 32 236 268 1 170 80 17 17 289 -1 unnamed_device 24.6 MiB 2.06 1001 7820 2636 3784 1400 63.2 MiB 0.11 0.00 6.03241 -146.623 -6.03241 6.03241 0.97 0.00122967 0.00114156 0.0595802 0.0553412 38 2855 26 6.79088e+06 215552 678818. 2348.85 4.82 0.41476 0.374155 25966 169698 -1 2350 17 1013 2797 153845 35426 5.26271 5.26271 -140.488 -5.26271 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0444687 0.040487 100 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 11.28 vpr 63.74 MiB -1 -1 0.38 18536 13 0.24 -1 -1 32832 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65272 32 32 283 315 1 219 82 17 17 289 -1 unnamed_device 24.7 MiB 1.90 1233 12720 4130 6639 1951 63.7 MiB 0.19 0.00 7.97631 -171.858 -7.97631 7.97631 0.98 0.00155659 0.00144645 0.116692 0.108503 44 3121 40 6.79088e+06 242496 787024. 2723.27 5.03 0.624063 0.565521 27118 194962 -1 2430 15 1253 3210 156447 37407 6.66272 6.66272 -155.122 -6.66272 0 0 997811. 3452.63 0.29 0.10 0.28 -1 -1 0.29 0.0518405 0.0473884 132 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 12.77 vpr 63.97 MiB -1 -1 0.38 18636 14 0.30 -1 -1 32992 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65504 32 32 303 335 1 229 86 17 17 289 -1 unnamed_device 25.1 MiB 1.45 1316 6701 1480 4957 264 64.0 MiB 0.12 0.00 8.93186 -185.128 -8.93186 8.93186 1.00 0.00169708 0.00157341 0.0646055 0.0601167 36 3606 23 6.79088e+06 296384 648988. 2245.63 7.09 0.638687 0.576948 25390 158009 -1 3063 18 1382 3438 193585 46079 8.18111 8.18111 -184.661 -8.18111 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.0640786 0.0585049 151 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 10.78 vpr 63.16 MiB -1 -1 0.31 18020 11 0.17 -1 -1 32696 -1 -1 21 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64676 29 32 225 257 1 177 82 17 17 289 -1 unnamed_device 24.6 MiB 2.24 908 8626 2180 6066 380 63.2 MiB 0.11 0.00 6.88418 -136.715 -6.88418 6.88418 0.99 0.001226 0.00113509 0.0630024 0.0584922 36 2579 19 6.79088e+06 282912 648988. 2245.63 4.64 0.407421 0.368182 25390 158009 -1 2266 18 1080 2590 145916 34768 5.91503 5.91503 -132.739 -5.91503 0 0 828058. 2865.25 0.24 0.09 0.22 -1 -1 0.24 0.0457967 0.0417128 105 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 8.70 vpr 64.00 MiB -1 -1 0.38 18536 12 0.27 -1 -1 32944 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65536 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 25.1 MiB 1.25 1369 10813 2694 6226 1893 64.0 MiB 0.17 0.00 7.38162 -160.306 -7.38162 7.38162 0.98 0.0016753 0.00155787 0.0979306 0.0911123 36 3997 22 6.79088e+06 323328 648988. 2245.63 3.17 0.384761 0.349986 25390 158009 -1 3263 18 1574 4709 287608 66659 6.58073 6.58073 -157.623 -6.58073 0 0 828058. 2865.25 0.24 0.14 0.22 -1 -1 0.24 0.0641507 0.0586175 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 11.17 vpr 63.84 MiB -1 -1 0.37 18128 14 0.24 -1 -1 32880 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65376 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.8 MiB 1.85 1236 11613 2985 6550 2078 63.8 MiB 0.17 0.00 8.17676 -170.064 -8.17676 8.17676 0.99 0.00147024 0.00136252 0.0998779 0.0928868 44 3094 27 6.79088e+06 269440 787024. 2723.27 4.88 0.566239 0.512682 27118 194962 -1 2585 17 1250 3350 176991 40334 6.8496 6.8496 -159.137 -6.8496 0 0 997811. 3452.63 0.29 0.10 0.28 -1 -1 0.29 0.0548481 0.0500445 126 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 8.38 vpr 63.39 MiB -1 -1 0.35 18408 12 0.16 -1 -1 32596 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64916 32 32 227 259 1 172 81 17 17 289 -1 unnamed_device 24.8 MiB 1.69 883 11281 4156 5456 1669 63.4 MiB 0.14 0.00 7.10207 -150.267 -7.10207 7.10207 0.98 0.00124803 0.00115846 0.0845126 0.0784218 38 2474 30 6.79088e+06 229024 678818. 2348.85 2.70 0.366257 0.331827 25966 169698 -1 1876 15 904 2413 118086 29995 5.93857 5.93857 -139.156 -5.93857 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0410688 0.0374731 104 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 9.67 vpr 62.88 MiB -1 -1 0.28 17816 10 0.10 -1 -1 32324 -1 -1 12 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64388 30 32 175 207 1 131 74 17 17 289 -1 unnamed_device 24.2 MiB 1.75 693 4724 1073 3462 189 62.9 MiB 0.06 0.00 5.04691 -118.984 -5.04691 5.04691 0.98 0.000885736 0.000822373 0.0295551 0.0274618 36 2024 24 6.79088e+06 161664 648988. 2245.63 4.21 0.309318 0.276714 25390 158009 -1 1698 20 715 1750 114539 25937 4.55765 4.55765 -117.842 -4.55765 0 0 828058. 2865.25 0.25 0.07 0.23 -1 -1 0.25 0.0360075 0.0324605 64 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 10.70 vpr 63.14 MiB -1 -1 0.34 17924 13 0.18 -1 -1 32856 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64660 31 32 231 263 1 185 81 17 17 289 -1 unnamed_device 24.5 MiB 1.88 1078 7081 1598 4291 1192 63.1 MiB 0.10 0.00 7.44012 -155.367 -7.44012 7.44012 0.98 0.00125421 0.00116533 0.0545431 0.0506823 30 2986 39 6.79088e+06 242496 556674. 1926.21 4.93 0.487687 0.439695 24526 138013 -1 2285 18 1081 2566 123519 30859 6.28333 6.28333 -145.633 -6.28333 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0489478 0.0446677 107 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 19.00 vpr 63.90 MiB -1 -1 0.37 18608 13 0.27 -1 -1 32892 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65432 32 32 304 336 1 225 85 17 17 289 -1 unnamed_device 24.8 MiB 1.87 1376 8083 2272 5247 564 63.9 MiB 0.14 0.00 7.87531 -169.049 -7.87531 7.87531 0.98 0.00164206 0.00152773 0.0766115 0.0712409 36 4071 45 6.79088e+06 282912 648988. 2245.63 12.76 0.725771 0.655829 25390 158009 -1 3349 29 1688 4810 475282 192470 7.01948 7.01948 -166.831 -7.01948 0 0 828058. 2865.25 0.24 0.26 0.22 -1 -1 0.24 0.0917254 0.0833242 142 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 12.04 vpr 63.96 MiB -1 -1 0.42 18600 13 0.28 -1 -1 32564 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65492 32 32 288 320 1 217 85 17 17 289 -1 unnamed_device 25.1 MiB 2.01 1366 6595 1403 4488 704 64.0 MiB 0.11 0.00 7.64506 -164.428 -7.64506 7.64506 0.98 0.00158441 0.0014701 0.0628517 0.0584438 44 3382 18 6.79088e+06 282912 787024. 2723.27 5.52 0.536843 0.485576 27118 194962 -1 2831 18 1233 3778 203109 46033 6.63122 6.63122 -153.894 -6.63122 0 0 997811. 3452.63 0.30 0.12 0.28 -1 -1 0.30 0.0596752 0.0544968 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 6.37 vpr 62.85 MiB -1 -1 0.24 17732 9 0.09 -1 -1 32384 -1 -1 18 26 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64356 26 32 152 184 1 121 76 17 17 289 -1 unnamed_device 24.3 MiB 1.11 706 10316 3839 4776 1701 62.8 MiB 0.09 0.00 5.04309 -98.1528 -5.04309 5.04309 1.00 0.000300376 0.000275054 0.0503319 0.0467181 34 1754 20 6.79088e+06 242496 618332. 2139.56 1.58 0.218588 0.1966 25102 150614 -1 1487 16 605 1412 86351 20389 4.11565 4.11565 -93.7548 -4.11565 0 0 787024. 2723.27 0.24 0.06 0.21 -1 -1 0.24 0.0275032 0.0247857 67 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 11.11 vpr 63.84 MiB -1 -1 0.33 18388 13 0.27 -1 -1 32896 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65368 32 32 287 319 1 211 83 17 17 289 -1 unnamed_device 24.8 MiB 1.40 1125 5843 1079 4624 140 63.8 MiB 0.11 0.00 8.08076 -161.905 -8.08076 8.08076 0.98 0.00157134 0.00146086 0.0558605 0.0519566 44 3213 26 6.79088e+06 255968 787024. 2723.27 5.45 0.561545 0.50688 27118 194962 -1 2633 18 1388 3765 202718 47522 7.04987 7.04987 -154.328 -7.04987 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0592801 0.0540463 130 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 7.06 vpr 62.60 MiB -1 -1 0.23 17836 8 0.09 -1 -1 32308 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64100 32 32 154 186 1 126 81 17 17 289 -1 unnamed_device 24.0 MiB 1.66 620 6381 1458 4287 636 62.6 MiB 0.07 0.00 3.97346 -91.5032 -3.97346 3.97346 0.98 0.000770079 0.000714238 0.0301706 0.027955 34 1775 19 6.79088e+06 229024 618332. 2139.56 1.78 0.187837 0.167733 25102 150614 -1 1553 18 741 1561 95555 23644 3.62656 3.62656 -93.3185 -3.62656 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.028768 0.0258525 63 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 8.60 vpr 63.56 MiB -1 -1 0.33 17864 15 0.23 -1 -1 32988 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65084 32 32 254 286 1 202 83 17 17 289 -1 unnamed_device 24.7 MiB 1.86 1221 6203 1498 4397 308 63.6 MiB 0.10 0.00 8.46989 -175.396 -8.46989 8.46989 1.03 0.00141641 0.00131747 0.0547371 0.0509465 36 3512 32 6.79088e+06 255968 648988. 2245.63 2.68 0.318905 0.288619 25390 158009 -1 2938 19 1307 3678 215096 49662 7.53649 7.53649 -170.126 -7.53649 0 0 828058. 2865.25 0.24 0.12 0.22 -1 -1 0.24 0.0559359 0.0508607 122 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 8.84 vpr 63.57 MiB -1 -1 0.33 18372 13 0.22 -1 -1 33104 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65096 32 32 260 292 1 193 82 17 17 289 -1 unnamed_device 24.7 MiB 1.69 1121 7558 1845 4695 1018 63.6 MiB 0.12 0.00 6.82492 -146.441 -6.82492 6.82492 0.98 0.00147733 0.00135463 0.0656455 0.0611058 40 2851 19 6.79088e+06 242496 706193. 2443.58 3.01 0.36392 0.329569 26254 175826 -1 2724 22 1384 4249 259005 58147 5.97875 5.97875 -142.973 -5.97875 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0636272 0.0577824 117 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 10.71 vpr 63.84 MiB -1 -1 0.35 18424 13 0.26 -1 -1 32904 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65376 32 32 279 311 1 202 83 17 17 289 -1 unnamed_device 24.8 MiB 1.71 1252 5663 1219 3717 727 63.8 MiB 0.11 0.00 8.11176 -171.626 -8.11176 8.11176 1.01 0.00154455 0.00143635 0.0550127 0.0512071 38 3384 37 6.79088e+06 255968 678818. 2348.85 4.75 0.438199 0.395891 25966 169698 -1 2716 18 1302 3927 188131 44569 7.12472 7.12472 -163.165 -7.12472 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0584922 0.0533513 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 8.08 vpr 63.28 MiB -1 -1 0.32 18084 12 0.16 -1 -1 32756 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64796 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 24.7 MiB 1.84 909 9196 2899 4953 1344 63.3 MiB 0.13 0.00 6.83474 -151.755 -6.83474 6.83474 0.97 0.0012573 0.00116647 0.0708483 0.065709 38 2660 38 6.79088e+06 215552 678818. 2348.85 2.31 0.301781 0.273448 25966 169698 -1 2149 15 1134 2679 139703 35090 6.15454 6.15454 -147.681 -6.15454 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0412614 0.0376063 103 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 9.20 vpr 63.36 MiB -1 -1 0.32 18000 11 0.17 -1 -1 32724 -1 -1 19 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64876 30 32 213 245 1 162 81 17 17 289 -1 unnamed_device 24.4 MiB 1.87 874 9531 2423 5364 1744 63.4 MiB 0.12 0.00 6.09984 -129.865 -6.09984 6.09984 0.98 0.00112728 0.00104697 0.0653129 0.060708 36 2634 25 6.79088e+06 255968 648988. 2245.63 3.34 0.31558 0.284954 25390 158009 -1 2122 20 947 2206 125060 30191 5.39904 5.39904 -124.116 -5.39904 0 0 828058. 2865.25 0.24 0.09 0.22 -1 -1 0.24 0.0463037 0.0420416 96 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 8.00 vpr 63.14 MiB -1 -1 0.33 18088 11 0.17 -1 -1 32724 -1 -1 21 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64656 28 32 227 259 1 173 81 17 17 289 -1 unnamed_device 24.6 MiB 1.19 945 9706 2749 5392 1565 63.1 MiB 0.15 0.00 6.65573 -132.254 -6.65573 6.65573 0.99 0.00122531 0.00113823 0.0841502 0.0784372 36 2723 22 6.79088e+06 282912 648988. 2245.63 2.80 0.360307 0.326994 25390 158009 -1 2231 15 1013 2581 137569 32899 5.82893 5.82893 -128.168 -5.82893 0 0 828058. 2865.25 0.24 0.08 0.22 -1 -1 0.24 0.0405583 0.0370014 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 11.70 vpr 63.71 MiB -1 -1 0.31 18088 12 0.20 -1 -1 32796 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65236 32 32 274 306 1 208 81 17 17 289 -1 unnamed_device 24.7 MiB 1.99 1298 10581 2710 6410 1461 63.7 MiB 0.15 0.00 7.32069 -168.079 -7.32069 7.32069 0.98 0.00145609 0.00135333 0.0917569 0.0852281 48 2801 16 6.79088e+06 229024 865456. 2994.66 5.47 0.499457 0.451748 27694 206865 -1 2525 18 1212 2762 164525 37499 6.36943 6.36943 -156.984 -6.36943 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.0549476 0.0499903 117 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 10.69 vpr 63.45 MiB -1 -1 0.32 18076 12 0.16 -1 -1 32856 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64968 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 24.7 MiB 2.01 906 12464 4448 5883 2133 63.4 MiB 0.16 0.00 6.76776 -137.818 -6.76776 6.76776 0.97 0.00124267 0.00115345 0.0941815 0.0874121 44 2305 24 6.79088e+06 229024 787024. 2723.27 4.55 0.48198 0.435585 27118 194962 -1 1938 19 1005 2820 136575 33009 5.61753 5.61753 -129.256 -5.61753 0 0 997811. 3452.63 0.29 0.09 0.28 -1 -1 0.29 0.0490586 0.0446305 101 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 7.35 vpr 63.37 MiB -1 -1 0.34 18132 10 0.14 -1 -1 32756 -1 -1 17 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64892 29 32 220 252 1 167 78 17 17 289 -1 unnamed_device 24.8 MiB 0.95 921 7382 1707 5211 464 63.4 MiB 0.10 0.00 5.94728 -131.013 -5.94728 5.94728 0.98 0.00120834 0.00112199 0.0574532 0.0534093 36 2692 43 6.79088e+06 229024 648988. 2245.63 2.39 0.294051 0.266199 25390 158009 -1 2263 16 965 2803 164833 37384 5.07353 5.07353 -124.21 -5.07353 0 0 828058. 2865.25 0.24 0.09 0.22 -1 -1 0.24 0.0418078 0.0381133 101 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 8.97 vpr 63.93 MiB -1 -1 0.39 18756 13 0.31 -1 -1 32872 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65468 32 32 315 347 1 228 85 17 17 289 -1 unnamed_device 25.0 MiB 1.49 1377 7339 1645 5038 656 63.9 MiB 0.13 0.00 8.22902 -172.723 -8.22902 8.22902 0.98 0.00173871 0.00161637 0.0741053 0.0689496 44 3505 44 6.79088e+06 282912 787024. 2723.27 3.15 0.512521 0.464422 27118 194962 -1 2787 16 1275 3660 187711 42940 7.0925 7.0925 -163.984 -7.0925 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0605964 0.0554582 147 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 8.64 vpr 63.83 MiB -1 -1 0.41 18968 14 0.30 -1 -1 33436 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65360 32 32 282 314 1 224 83 17 17 289 -1 unnamed_device 24.7 MiB 1.61 1265 11423 3369 5757 2297 63.8 MiB 0.18 0.00 7.78618 -171.47 -7.78618 7.78618 0.98 0.00158486 0.00147424 0.105513 0.098099 44 3510 28 6.79088e+06 255968 787024. 2723.27 2.65 0.353443 0.321277 27118 194962 -1 2941 14 1401 3918 209891 47599 6.87069 6.87069 -164.357 -6.87069 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0497525 0.0455585 137 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 11.84 vpr 62.94 MiB -1 -1 0.34 17984 12 0.15 -1 -1 32460 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64452 31 32 241 273 1 170 80 17 17 289 -1 unnamed_device 24.4 MiB 1.98 1020 5756 1178 4150 428 62.9 MiB 0.09 0.00 7.06821 -153.603 -7.06821 7.06821 0.99 0.00126015 0.0011703 0.0463499 0.0431113 30 2659 23 6.79088e+06 229024 556674. 1926.21 5.94 0.370435 0.333958 24526 138013 -1 2263 18 1058 2822 144999 34688 6.58073 6.58073 -155.873 -6.58073 0 0 706193. 2443.58 0.24 0.10 0.19 -1 -1 0.24 0.0488361 0.0445532 103 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 9.88 vpr 64.18 MiB -1 -1 0.42 18760 12 0.27 -1 -1 32968 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65716 31 32 307 339 1 223 87 17 17 289 -1 unnamed_device 25.3 MiB 2.42 1316 9879 2556 6613 710 64.2 MiB 0.16 0.00 7.54626 -159.356 -7.54626 7.54626 0.97 0.00163728 0.00152286 0.0918496 0.0854379 36 3997 38 6.79088e+06 323328 648988. 2245.63 3.13 0.447045 0.406039 25390 158009 -1 3235 27 1511 4431 327210 106386 6.49016 6.49016 -152.476 -6.49016 0 0 828058. 2865.25 0.24 0.19 0.22 -1 -1 0.24 0.0880311 0.0800426 146 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 14.65 vpr 63.82 MiB -1 -1 0.40 18888 14 0.33 -1 -1 32768 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65352 31 32 293 325 1 208 86 17 17 289 -1 unnamed_device 24.8 MiB 1.29 1251 5189 1031 3752 406 63.8 MiB 0.09 0.00 8.43595 -166.985 -8.43595 8.43595 0.98 0.00167495 0.00156156 0.0500676 0.0466399 30 3816 49 6.79088e+06 309856 556674. 1926.21 9.14 0.599169 0.541161 24526 138013 -1 2859 23 1594 4683 274517 82718 7.30817 7.30817 -160.274 -7.30817 0 0 706193. 2443.58 0.22 0.17 0.19 -1 -1 0.22 0.0755277 0.0687795 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 11.50 vpr 63.70 MiB -1 -1 0.39 18788 13 0.26 -1 -1 32848 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65228 31 32 276 308 1 214 84 17 17 289 -1 unnamed_device 24.6 MiB 1.79 1271 13626 4763 6275 2588 63.7 MiB 0.20 0.00 8.48106 -170.153 -8.48106 8.48106 1.00 0.00153406 0.00142646 0.119366 0.111077 44 3644 27 6.79088e+06 282912 787024. 2723.27 5.24 0.630297 0.57113 27118 194962 -1 2825 17 1396 3667 205014 46714 7.4761 7.4761 -160.023 -7.4761 0 0 997811. 3452.63 0.30 0.11 0.29 -1 -1 0.30 0.0559028 0.0510314 131 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 10.70 vpr 63.61 MiB -1 -1 0.39 18636 13 0.25 -1 -1 32860 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65136 31 32 269 301 1 203 83 17 17 289 -1 unnamed_device 24.5 MiB 1.30 1222 7823 1713 5702 408 63.6 MiB 0.12 0.00 7.81091 -159.172 -7.81091 7.81091 0.98 0.00149366 0.00138838 0.0693729 0.0644895 46 3021 43 6.79088e+06 269440 828058. 2865.25 5.16 0.569068 0.514153 27406 200422 -1 2551 17 1197 3521 185116 42147 6.72962 6.72962 -145.729 -6.72962 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.054911 0.0500728 124 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 7.29 vpr 63.57 MiB -1 -1 0.33 18352 12 0.18 -1 -1 32892 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65096 32 32 264 296 1 184 79 17 17 289 -1 unnamed_device 24.7 MiB 1.37 1065 5487 1235 3857 395 63.6 MiB 0.09 0.00 6.67703 -143.122 -6.67703 6.67703 0.98 0.00139291 0.00129397 0.0507902 0.04719 34 2850 25 6.79088e+06 202080 618332. 2139.56 2.05 0.353314 0.318724 25102 150614 -1 2364 15 1014 2536 138001 33328 5.86813 5.86813 -137.71 -5.86813 0 0 787024. 2723.27 0.24 0.09 0.17 -1 -1 0.24 0.0457382 0.0416901 110 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 10.34 vpr 64.07 MiB -1 -1 0.46 19424 14 0.38 -1 -1 33112 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65608 32 32 324 356 1 243 85 17 17 289 -1 unnamed_device 25.0 MiB 1.10 1554 7897 2063 5110 724 64.1 MiB 0.14 0.00 8.5032 -181.474 -8.5032 8.5032 0.98 0.0018152 0.00168741 0.0826607 0.0768261 40 3994 26 6.79088e+06 282912 706193. 2443.58 4.63 0.492362 0.447162 26254 175826 -1 3586 18 1678 5099 301610 67812 7.3039 7.3039 -172.446 -7.3039 0 0 926341. 3205.33 0.27 0.15 0.25 -1 -1 0.27 0.0700833 0.0641026 159 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 10.80 vpr 63.33 MiB -1 -1 0.31 18068 11 0.19 -1 -1 32480 -1 -1 16 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64848 31 32 249 281 1 188 79 17 17 289 -1 unnamed_device 24.5 MiB 1.82 1138 3966 751 3109 106 63.3 MiB 0.08 0.00 6.36587 -138.564 -6.36587 6.36587 0.99 0.00135829 0.00126311 0.0376598 0.0350145 44 3040 19 6.79088e+06 215552 787024. 2723.27 4.86 0.444746 0.4004 27118 194962 -1 2620 19 1206 3370 195884 43955 5.57484 5.57484 -133.904 -5.57484 0 0 997811. 3452.63 0.30 0.11 0.29 -1 -1 0.30 0.053732 0.0488671 112 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 10.02 vpr 63.87 MiB -1 -1 0.40 18524 13 0.26 -1 -1 33428 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65404 31 32 284 316 1 191 84 17 17 289 -1 unnamed_device 24.9 MiB 1.13 1227 8868 2138 5562 1168 63.9 MiB 0.14 0.00 8.05648 -168.256 -8.05648 8.05648 0.97 0.00158064 0.00147023 0.0810357 0.0754098 38 2825 23 6.79088e+06 282912 678818. 2348.85 4.67 0.540655 0.488675 25966 169698 -1 2397 17 1109 3621 174949 40851 6.92451 6.92451 -154.313 -6.92451 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0572969 0.0523661 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 9.32 vpr 63.76 MiB -1 -1 0.35 18380 12 0.25 -1 -1 32976 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65288 32 32 303 335 1 210 85 17 17 289 -1 unnamed_device 24.9 MiB 1.48 1298 12361 2924 7866 1571 63.8 MiB 0.19 0.00 6.98572 -155.809 -6.98572 6.98572 0.98 0.00168753 0.00156955 0.117392 0.109216 38 3579 28 6.79088e+06 282912 678818. 2348.85 3.57 0.495576 0.450699 25966 169698 -1 2938 18 1586 5035 276956 62076 5.84012 5.84012 -145.42 -5.84012 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0630705 0.0574711 145 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 8.40 vpr 63.75 MiB -1 -1 0.34 18240 13 0.24 -1 -1 32832 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65276 32 32 272 304 1 195 84 17 17 289 -1 unnamed_device 24.7 MiB 1.23 1155 7770 1729 5200 841 63.7 MiB 0.13 0.00 7.69291 -164.646 -7.69291 7.69291 1.00 0.00152266 0.00141643 0.071778 0.0668351 34 3323 45 6.79088e+06 269440 618332. 2139.56 2.97 0.398468 0.361603 25102 150614 -1 2702 19 1260 3305 181042 43122 6.70962 6.70962 -157.408 -6.70962 0 0 787024. 2723.27 0.24 0.12 0.23 -1 -1 0.24 0.0610862 0.0556659 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 12.09 vpr 63.71 MiB -1 -1 0.37 18596 13 0.21 -1 -1 33324 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65236 32 32 271 303 1 213 82 17 17 289 -1 unnamed_device 24.7 MiB 2.18 1245 11296 3823 5504 1969 63.7 MiB 0.17 0.00 7.62172 -162.859 -7.62172 7.62172 0.97 0.00147556 0.00137113 0.0981371 0.0912708 46 3080 27 6.79088e+06 242496 828058. 2865.25 5.57 0.550942 0.498549 27406 200422 -1 2579 19 1174 3153 171995 38682 6.63466 6.63466 -152.486 -6.63466 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0585478 0.0533249 123 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 21.81 vpr 63.88 MiB -1 -1 0.38 18592 12 0.24 -1 -1 33024 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65408 32 32 288 320 1 213 86 17 17 289 -1 unnamed_device 25.1 MiB 1.70 1309 8402 2054 5716 632 63.9 MiB 0.14 0.00 7.46308 -161.108 -7.46308 7.46308 0.99 0.00160915 0.00149543 0.0765776 0.0711941 40 3349 22 6.79088e+06 296384 706193. 2443.58 15.85 0.744124 0.671747 26254 175826 -1 3215 18 1454 4359 262914 59496 6.54507 6.54507 -157.683 -6.54507 0 0 926341. 3205.33 0.27 0.13 0.25 -1 -1 0.27 0.0611597 0.0557016 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 8.24 vpr 63.96 MiB -1 -1 0.41 18816 13 0.29 -1 -1 33560 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65496 32 32 306 338 1 225 85 17 17 289 -1 unnamed_device 25.0 MiB 1.25 1275 4735 898 3382 455 64.0 MiB 0.10 0.00 8.09732 -172.599 -8.09732 8.09732 0.99 0.00171498 0.00159488 0.0509435 0.0474175 38 3423 50 6.79088e+06 282912 678818. 2348.85 2.63 0.428296 0.388204 25966 169698 -1 2793 16 1409 4001 195498 46834 6.87756 6.87756 -155.068 -6.87756 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0600001 0.0548848 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 8.14 vpr 63.70 MiB -1 -1 0.35 18320 14 0.27 -1 -1 33044 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65224 32 32 262 294 1 194 83 17 17 289 -1 unnamed_device 24.7 MiB 1.28 1332 6383 1390 4359 634 63.7 MiB 0.10 0.00 8.35004 -171.056 -8.35004 8.35004 0.97 0.00145227 0.0013509 0.0559001 0.0519934 44 3121 34 6.79088e+06 255968 787024. 2723.27 2.68 0.35392 0.320494 27118 194962 -1 2627 17 1194 3325 178556 40358 7.17517 7.17517 -160.182 -7.17517 0 0 997811. 3452.63 0.29 0.10 0.28 -1 -1 0.29 0.0526408 0.0480333 125 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 18.63 vpr 63.83 MiB -1 -1 0.35 18364 13 0.25 -1 -1 33008 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65364 32 32 291 323 1 212 84 17 17 289 -1 unnamed_device 24.8 MiB 1.66 1280 6306 1448 4128 730 63.8 MiB 0.11 0.00 8.18011 -164.079 -8.18011 8.18011 0.99 0.00157847 0.00146813 0.0596883 0.0555471 38 3538 33 6.79088e+06 269440 678818. 2348.85 12.72 0.716561 0.644551 25966 169698 -1 2909 16 1395 3826 204326 48971 7.47605 7.47605 -166.807 -7.47605 0 0 902133. 3121.57 0.26 0.12 0.26 -1 -1 0.26 0.0558425 0.0510479 136 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 9.27 vpr 64.22 MiB -1 -1 0.40 18732 13 0.27 -1 -1 33068 -1 -1 22 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65760 31 32 302 334 1 224 85 17 17 289 -1 unnamed_device 25.4 MiB 1.62 1301 8083 1880 5114 1089 64.2 MiB 0.14 0.00 7.82203 -169.793 -7.82203 7.82203 0.98 0.00165913 0.00154422 0.0769559 0.0716075 38 3376 25 6.79088e+06 296384 678818. 2348.85 3.41 0.438485 0.397437 25966 169698 -1 2841 18 1431 3939 189745 45391 7.16392 7.16392 -163.393 -7.16392 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0622201 0.0568277 144 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 8.79 vpr 63.98 MiB -1 -1 0.40 18556 12 0.29 -1 -1 33048 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65516 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 25.1 MiB 1.25 1349 6967 1481 4942 544 64.0 MiB 0.12 0.00 7.58336 -160.336 -7.58336 7.58336 0.99 0.00169342 0.00157684 0.0683939 0.0636777 38 3380 23 6.79088e+06 282912 678818. 2348.85 3.21 0.427799 0.388095 25966 169698 -1 2822 15 1343 3724 185778 43883 6.63466 6.63466 -152.748 -6.63466 0 0 902133. 3121.57 0.26 0.11 0.27 -1 -1 0.26 0.0545158 0.0498843 147 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 7.98 vpr 63.11 MiB -1 -1 0.30 18076 11 0.13 -1 -1 32640 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64628 32 32 216 248 1 161 78 17 17 289 -1 unnamed_device 24.4 MiB 1.22 854 6552 1491 4896 165 63.1 MiB 0.09 0.00 6.10408 -131.471 -6.10408 6.10408 0.87 0.00112599 0.00104422 0.0479787 0.0445118 36 2520 30 6.79088e+06 188608 648988. 2245.63 2.99 0.303169 0.27324 25390 158009 -1 2000 15 938 2303 132381 31993 5.23808 5.23808 -130.085 -5.23808 0 0 828058. 2865.25 0.25 0.08 0.22 -1 -1 0.25 0.0368944 0.0335645 91 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 9.39 vpr 63.69 MiB -1 -1 0.35 18476 13 0.21 -1 -1 32860 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65216 32 32 254 286 1 196 83 17 17 289 -1 unnamed_device 24.8 MiB 1.59 1125 4583 881 3537 165 63.7 MiB 0.04 0.00 7.79846 -167.848 -7.79846 7.79846 0.97 0.000525093 0.00048261 0.0161431 0.0149085 36 3177 30 6.79088e+06 255968 648988. 2245.63 3.73 0.344924 0.310366 25390 158009 -1 2572 15 1090 2720 155933 35963 6.91332 6.91332 -163.656 -6.91332 0 0 828058. 2865.25 0.24 0.10 0.22 -1 -1 0.24 0.049977 0.0457916 117 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 11.70 vpr 64.12 MiB -1 -1 0.41 19092 14 0.42 -1 -1 32976 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65664 32 32 338 370 1 252 88 17 17 289 -1 unnamed_device 25.2 MiB 1.09 1553 10618 2680 6617 1321 64.1 MiB 0.19 0.00 9.27313 -184.831 -9.27313 9.27313 0.97 0.00189497 0.00176203 0.109147 0.101592 46 3871 19 6.79088e+06 323328 828058. 2865.25 5.95 0.709761 0.645229 27406 200422 -1 3288 18 1754 5291 257994 58964 8.0278 8.0278 -172.473 -8.0278 0 0 1.01997e+06 3529.29 0.30 0.14 0.29 -1 -1 0.30 0.0724422 0.0663359 171 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 10.58 vpr 63.69 MiB -1 -1 0.37 18120 13 0.28 -1 -1 32972 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65216 32 32 271 303 1 215 83 17 17 289 -1 unnamed_device 24.6 MiB 1.31 1263 10343 2759 5468 2116 63.7 MiB 0.16 0.00 7.95077 -174.752 -7.95077 7.95077 0.97 0.00152724 0.00142022 0.0926914 0.0861147 38 3572 49 6.79088e+06 255968 678818. 2348.85 4.90 0.504544 0.457803 25966 169698 -1 2916 28 1321 3652 273399 94398 6.89761 6.89761 -164.681 -6.89761 0 0 902133. 3121.57 0.26 0.18 0.24 -1 -1 0.26 0.0825878 0.074996 131 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 9.23 vpr 63.04 MiB -1 -1 0.33 17972 11 0.17 -1 -1 32716 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64552 30 32 224 256 1 162 79 17 17 289 -1 unnamed_device 24.2 MiB 0.47 883 7853 1940 5339 574 63.0 MiB 0.11 0.00 6.27294 -133.979 -6.27294 6.27294 0.99 0.00122198 0.00113523 0.0620639 0.0577849 40 2205 18 6.79088e+06 229024 706193. 2443.58 4.72 0.419416 0.379053 26254 175826 -1 2017 15 972 2637 148652 35458 5.57484 5.57484 -130.52 -5.57484 0 0 926341. 3205.33 0.27 0.08 0.26 -1 -1 0.27 0.039943 0.0364365 100 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 23.93 vpr 64.23 MiB -1 -1 0.45 19120 15 0.51 -1 -1 32980 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65768 32 32 351 383 1 260 89 17 17 289 -1 unnamed_device 25.2 MiB 1.05 1559 7217 1529 4884 804 64.2 MiB 0.14 0.00 9.47559 -189.1 -9.47559 9.47559 0.97 0.00198235 0.0018388 0.0781882 0.072641 38 4868 46 6.79088e+06 336800 678818. 2348.85 18.12 1.01933 0.922683 25966 169698 -1 3595 20 1938 6030 310129 71590 8.16889 8.16889 -176.698 -8.16889 0 0 902133. 3121.57 0.26 0.16 0.24 -1 -1 0.26 0.0823559 0.0752725 180 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 11.68 vpr 63.80 MiB -1 -1 0.37 18632 13 0.30 -1 -1 32872 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65336 32 32 297 329 1 215 84 17 17 289 -1 unnamed_device 24.7 MiB 1.09 1327 11613 3037 7153 1423 63.8 MiB 0.19 0.00 8.35567 -179.275 -8.35567 8.35567 0.98 0.00212196 0.00200666 0.116428 0.108107 36 3634 42 6.79088e+06 269440 648988. 2245.63 5.84 0.529889 0.480523 25390 158009 -1 3024 65 2468 8251 1020214 497147 7.41103 7.41103 -171.607 -7.41103 0 0 828058. 2865.25 0.24 0.62 0.22 -1 -1 0.24 0.189058 0.170943 139 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 8.42 vpr 63.10 MiB -1 -1 0.29 17820 11 0.13 -1 -1 32880 -1 -1 14 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64616 32 32 231 263 1 166 78 17 17 289 -1 unnamed_device 24.6 MiB 1.56 913 8544 1751 6687 106 63.1 MiB 0.12 0.00 6.71833 -138.755 -6.71833 6.71833 1.01 0.00120399 0.0011171 0.0657467 0.0610312 34 2949 46 6.79088e+06 188608 618332. 2139.56 2.95 0.320576 0.289838 25102 150614 -1 2156 15 940 2378 139721 33671 5.53143 5.53143 -133.95 -5.53143 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0397278 0.036199 95 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 14.59 vpr 63.86 MiB -1 -1 0.37 18412 12 0.29 -1 -1 32996 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65392 32 32 305 337 1 211 84 17 17 289 -1 unnamed_device 24.8 MiB 1.02 1275 5757 1099 4374 284 63.9 MiB 0.10 0.00 8.05812 -164.83 -8.05812 8.05812 0.98 0.00167396 0.00155571 0.0577058 0.0536845 36 3850 34 6.79088e+06 269440 648988. 2245.63 9.35 0.648242 0.585562 25390 158009 -1 2998 18 1471 4822 271292 61939 7.25346 7.25346 -161.884 -7.25346 0 0 828058. 2865.25 0.25 0.13 0.22 -1 -1 0.25 0.0637554 0.0581092 145 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 11.73 vpr 63.35 MiB -1 -1 0.25 18088 12 0.19 -1 -1 32788 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64872 32 32 243 275 1 185 80 17 17 289 -1 unnamed_device 24.7 MiB 1.25 1063 10572 3521 4821 2230 63.4 MiB 0.17 0.00 7.07212 -150.92 -7.07212 7.07212 0.98 0.00132437 0.00122559 0.0975621 0.0907009 36 3529 25 6.79088e+06 215552 648988. 2245.63 6.38 0.389768 0.353425 25390 158009 -1 2699 29 1560 4343 337224 99399 6.36938 6.36938 -149.46 -6.36938 0 0 828058. 2865.25 0.24 0.18 0.22 -1 -1 0.24 0.0734988 0.0666487 111 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 8.46 vpr 63.21 MiB -1 -1 0.33 18000 12 0.18 -1 -1 32672 -1 -1 18 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64728 30 32 228 260 1 165 80 17 17 289 -1 unnamed_device 24.7 MiB 1.00 1004 11776 3311 6854 1611 63.2 MiB 0.15 0.00 7.78962 -153.98 -7.78962 7.78962 0.97 0.00125606 0.00116726 0.0897781 0.0833772 36 2662 49 6.79088e+06 242496 648988. 2245.63 3.43 0.414198 0.375404 25390 158009 -1 2338 30 923 2691 207360 76459 6.54507 6.54507 -145.764 -6.54507 0 0 828058. 2865.25 0.24 0.15 0.22 -1 -1 0.24 0.0719963 0.0652685 105 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 11.35 vpr 63.64 MiB -1 -1 0.40 18652 12 0.26 -1 -1 33492 -1 -1 23 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65168 29 32 275 307 1 200 84 17 17 289 -1 unnamed_device 24.6 MiB 1.87 1221 7770 1855 5075 840 63.6 MiB 0.12 0.00 7.43187 -140.251 -7.43187 7.43187 0.98 0.00155931 0.00145079 0.0725773 0.0674759 54 2710 18 6.79088e+06 309856 949917. 3286.91 5.08 0.523296 0.473386 28846 232421 -1 2367 15 1141 3580 184993 40517 6.41972 6.41972 -130.004 -6.41972 0 0 1.17392e+06 4061.99 0.34 0.10 0.35 -1 -1 0.34 0.0517731 0.0473381 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 11.46 vpr 64.14 MiB -1 -1 0.39 18664 13 0.33 -1 -1 32928 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65676 32 32 330 362 1 254 87 17 17 289 -1 unnamed_device 25.2 MiB 0.91 1359 13335 4246 7124 1965 64.1 MiB 0.21 0.00 8.15621 -168.312 -8.15621 8.15621 0.98 0.00178559 0.00166133 0.129514 0.120473 48 3305 38 6.79088e+06 309856 865456. 2994.66 5.96 0.708429 0.643153 27694 206865 -1 3081 20 1695 4285 234605 56189 7.08542 7.08542 -162.603 -7.08542 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0739107 0.06747 159 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 8.40 vpr 63.77 MiB -1 -1 0.37 18540 12 0.22 -1 -1 33020 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65296 32 32 290 322 1 219 83 17 17 289 -1 unnamed_device 24.7 MiB 0.96 1355 8543 2261 5601 681 63.8 MiB 0.14 0.00 8.04027 -168.911 -8.04027 8.04027 0.98 0.00160304 0.0014917 0.0809771 0.0753086 44 3502 23 6.79088e+06 255968 787024. 2723.27 3.23 0.352345 0.319893 27118 194962 -1 2837 19 1407 4054 229704 51794 6.87418 6.87418 -160.014 -6.87418 0 0 997811. 3452.63 0.29 0.13 0.29 -1 -1 0.29 0.0640943 0.0583746 138 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 10.39 vpr 63.06 MiB -1 -1 0.32 17976 12 0.15 -1 -1 32736 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64576 32 32 214 246 1 159 80 17 17 289 -1 unnamed_device 24.3 MiB 1.95 863 11260 4224 5242 1794 63.1 MiB 0.14 0.00 7.26107 -147.208 -7.26107 7.26107 0.98 0.00115605 0.00107366 0.0795838 0.073848 38 2303 22 6.79088e+06 215552 678818. 2348.85 4.48 0.382089 0.345272 25966 169698 -1 1972 16 819 2276 118325 28530 6.41977 6.41977 -140.857 -6.41977 0 0 902133. 3121.57 0.26 0.08 0.25 -1 -1 0.26 0.039639 0.0360844 93 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 10.12 vpr 63.66 MiB -1 -1 0.34 18264 12 0.20 -1 -1 32668 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65188 31 32 244 276 1 178 83 17 17 289 -1 unnamed_device 24.8 MiB 1.40 1108 3503 656 2559 288 63.7 MiB 0.06 0.00 7.09757 -147.836 -7.09757 7.09757 0.98 0.00131834 0.00122515 0.0296231 0.0275794 36 3023 21 6.79088e+06 269440 648988. 2245.63 4.73 0.428439 0.385767 25390 158009 -1 2613 19 1315 3690 217447 49962 6.50349 6.50349 -149.088 -6.50349 0 0 828058. 2865.25 0.25 0.11 0.22 -1 -1 0.25 0.0521146 0.0473544 112 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 8.21 vpr 63.64 MiB -1 -1 0.37 18444 11 0.18 -1 -1 32872 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65168 30 32 276 308 1 190 83 17 17 289 -1 unnamed_device 24.6 MiB 1.34 1054 9263 2245 5843 1175 63.6 MiB 0.14 0.00 6.88762 -135.169 -6.88762 6.88762 1.01 0.00149126 0.00138607 0.0816288 0.0759335 36 3330 44 6.79088e+06 282912 648988. 2245.63 2.65 0.384248 0.347916 25390 158009 -1 2573 28 1203 3854 306348 109286 6.11524 6.11524 -130.158 -6.11524 0 0 828058. 2865.25 0.25 0.18 0.22 -1 -1 0.25 0.0809111 0.0733809 126 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 7.01 vpr 63.79 MiB -1 -1 0.34 18020 11 0.20 -1 -1 32856 -1 -1 19 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65320 28 32 253 285 1 177 79 17 17 289 -1 unnamed_device 24.9 MiB 0.84 995 10050 2718 6209 1123 63.8 MiB 0.14 0.00 6.45019 -124.228 -6.45019 6.45019 0.97 0.00138017 0.00128412 0.0863265 0.0803065 36 2720 22 6.79088e+06 255968 648988. 2245.63 2.16 0.31364 0.284784 25390 158009 -1 2397 16 1114 3241 176718 42151 5.60634 5.60634 -120.057 -5.60634 0 0 828058. 2865.25 0.25 0.10 0.22 -1 -1 0.25 0.0479742 0.0437012 116 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 10.80 vpr 63.16 MiB -1 -1 0.34 18352 13 0.20 -1 -1 32668 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64680 30 32 235 267 1 171 79 17 17 289 -1 unnamed_device 24.5 MiB 1.95 969 10557 2812 6852 893 63.2 MiB 0.14 0.00 7.0265 -142.766 -7.0265 7.0265 0.98 0.00127639 0.00118546 0.0836578 0.0776865 40 2387 31 6.79088e+06 229024 706193. 2443.58 4.69 0.455916 0.412519 26254 175826 -1 2281 18 1082 3009 181264 42113 6.52695 6.52695 -144.057 -6.52695 0 0 926341. 3205.33 0.27 0.10 0.25 -1 -1 0.27 0.0481348 0.0438452 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 20.44 vpr 63.79 MiB -1 -1 0.20 18292 12 0.19 -1 -1 32540 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65316 32 32 264 296 1 201 82 17 17 289 -1 unnamed_device 24.8 MiB 2.14 1167 9872 2780 5471 1621 63.8 MiB 0.16 0.00 7.31132 -167.014 -7.31132 7.31132 0.99 0.0014154 0.00131228 0.0880031 0.0816502 36 3538 44 6.79088e+06 242496 648988. 2245.63 14.18 0.748606 0.674555 25390 158009 -1 2798 18 1257 3278 197460 45123 6.63112 6.63112 -165.87 -6.63112 0 0 828058. 2865.25 0.24 0.11 0.22 -1 -1 0.24 0.054935 0.0500359 119 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 9.39 vpr 63.78 MiB -1 -1 0.35 18460 13 0.28 -1 -1 33148 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65308 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 24.8 MiB 1.07 988 9783 2758 5943 1082 63.8 MiB 0.16 0.00 8.18266 -152.572 -8.18266 8.18266 0.99 0.00154158 0.00143271 0.0876193 0.0813827 36 3387 30 6.79088e+06 282912 648988. 2245.63 4.04 0.442172 0.400472 25390 158009 -1 2592 19 1402 3940 206500 51812 7.55096 7.55096 -156.436 -7.55096 0 0 828058. 2865.25 0.24 0.12 0.23 -1 -1 0.24 0.0612033 0.0557309 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 8.43 vpr 63.90 MiB -1 -1 0.41 18536 14 0.25 -1 -1 32872 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65432 32 32 290 322 1 211 84 17 17 289 -1 unnamed_device 24.9 MiB 1.12 1245 13992 4430 7427 2135 63.9 MiB 0.21 0.00 8.45277 -175.285 -8.45277 8.45277 0.98 0.00159068 0.00147331 0.125925 0.116966 44 3239 41 6.79088e+06 269440 787024. 2723.27 2.90 0.428851 0.390378 27118 194962 -1 2558 15 1208 3578 180466 42119 7.28928 7.28928 -161.572 -7.28928 0 0 997811. 3452.63 0.29 0.10 0.28 -1 -1 0.29 0.0524585 0.0479838 132 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 11.35 vpr 63.50 MiB -1 -1 0.39 18764 14 0.24 -1 -1 33012 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65028 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.5 MiB 1.97 1219 5506 1194 3684 628 63.5 MiB 0.10 0.00 8.08149 -162.851 -8.08149 8.08149 0.98 0.00147531 0.00137216 0.0524944 0.0488136 36 3544 24 6.79088e+06 229024 648988. 2245.63 5.28 0.37347 0.337608 25390 158009 -1 2747 18 1303 3813 219712 50331 6.88531 6.88531 -153.631 -6.88531 0 0 828058. 2865.25 0.24 0.11 0.22 -1 -1 0.24 0.0553917 0.0504447 119 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 20.43 vpr 63.87 MiB -1 -1 0.40 18900 13 0.32 -1 -1 33344 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65400 32 32 296 328 1 224 85 17 17 289 -1 unnamed_device 24.8 MiB 1.37 1337 14779 4197 8584 1998 63.9 MiB 0.23 0.00 8.4678 -172.702 -8.4678 8.4678 0.98 0.001663 0.0015494 0.137228 0.127512 40 3343 18 6.79088e+06 282912 706193. 2443.58 14.60 0.819762 0.742559 26254 175826 -1 3199 19 1445 4210 251159 56073 7.55101 7.55101 -166.014 -7.55101 0 0 926341. 3205.33 0.28 0.13 0.26 -1 -1 0.28 0.0658561 0.0600992 145 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 10.79 vpr 63.20 MiB -1 -1 0.32 18128 13 0.18 -1 -1 32668 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64716 30 32 234 266 1 174 79 17 17 289 -1 unnamed_device 24.6 MiB 1.67 971 11402 3221 6944 1237 63.2 MiB 0.15 0.00 7.37867 -152.623 -7.37867 7.37867 1.01 0.00126106 0.00117113 0.0900199 0.0837163 34 3015 38 6.79088e+06 229024 618332. 2139.56 5.11 0.511225 0.462093 25102 150614 -1 2456 19 1137 2977 187124 43277 6.83487 6.83487 -151.521 -6.83487 0 0 787024. 2723.27 0.24 0.10 0.21 -1 -1 0.24 0.0496354 0.0451152 104 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 8.88 vpr 63.94 MiB -1 -1 0.40 18892 13 0.43 -1 -1 32816 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65476 30 32 291 323 1 223 83 17 17 289 -1 unnamed_device 24.9 MiB 1.27 1226 6203 1393 4036 774 63.9 MiB 0.11 0.00 8.37399 -164.454 -8.37399 8.37399 0.98 0.00167923 0.00156253 0.0632044 0.0588616 38 3417 22 6.79088e+06 282912 678818. 2348.85 2.99 0.425184 0.385686 25966 169698 -1 2742 19 1435 3810 186947 44861 7.30385 7.30385 -158.004 -7.30385 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0661309 0.0603977 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 9.59 vpr 64.02 MiB -1 -1 0.38 18616 14 0.30 -1 -1 32876 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65552 32 32 274 306 1 201 81 17 17 289 -1 unnamed_device 25.0 MiB 1.53 1220 8831 2339 5185 1307 64.0 MiB 0.15 0.00 8.43664 -177.857 -8.43664 8.43664 0.98 0.00153034 0.00142293 0.0820235 0.0762464 36 3523 47 6.79088e+06 229024 648988. 2245.63 3.83 0.434778 0.39381 25390 158009 -1 3110 18 1387 4088 265849 58479 7.72443 7.72443 -173.931 -7.72443 0 0 828058. 2865.25 0.24 0.13 0.22 -1 -1 0.24 0.0582561 0.053042 127 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 10.41 vpr 63.79 MiB -1 -1 0.38 18332 13 0.22 -1 -1 32892 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65316 31 32 266 298 1 194 80 17 17 289 -1 unnamed_device 24.7 MiB 1.35 1018 10056 2882 5099 2075 63.8 MiB 0.15 0.00 7.45028 -151.18 -7.45028 7.45028 0.98 0.0014675 0.00136673 0.090543 0.0841744 38 3084 21 6.79088e+06 229024 678818. 2348.85 5.12 0.584805 0.528673 25966 169698 -1 2377 19 1332 3876 212628 48729 6.65923 6.65923 -144.952 -6.65923 0 0 902133. 3121.57 0.24 0.06 0.13 -1 -1 0.24 0.0260769 0.023737 122 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 10.65 vpr 63.56 MiB -1 -1 0.39 18636 13 0.21 -1 -1 32948 -1 -1 22 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65084 30 32 266 298 1 200 84 17 17 289 -1 unnamed_device 24.6 MiB 1.63 1131 8319 2355 4583 1381 63.6 MiB 0.13 0.00 7.49592 -149.558 -7.49592 7.49592 0.98 0.00145202 0.00135006 0.070969 0.0660356 36 3221 25 6.79088e+06 296384 648988. 2245.63 4.87 0.400174 0.362459 25390 158009 -1 2779 20 1277 3512 215817 49403 6.76533 6.76533 -147.206 -6.76533 0 0 828058. 2865.25 0.24 0.12 0.23 -1 -1 0.24 0.0596671 0.0542962 123 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 11.90 vpr 63.98 MiB -1 -1 0.37 18524 14 0.34 -1 -1 32852 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65512 32 32 310 342 1 229 85 17 17 289 -1 unnamed_device 25.1 MiB 1.26 1332 11803 3711 6311 1781 64.0 MiB 0.19 0.00 8.47332 -174.325 -8.47332 8.47332 0.97 0.00172779 0.00160708 0.114586 0.106557 44 3916 41 6.79088e+06 282912 787024. 2723.27 6.18 0.791584 0.717473 27118 194962 -1 2978 17 1498 4512 237703 54821 7.29277 7.29277 -163.186 -7.29277 0 0 997811. 3452.63 0.29 0.13 0.28 -1 -1 0.29 0.0629169 0.0575473 152 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 7.63 vpr 63.78 MiB -1 -1 0.39 18600 11 0.27 -1 -1 32840 -1 -1 22 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65312 29 32 262 294 1 201 83 17 17 289 -1 unnamed_device 24.7 MiB 1.64 1187 9803 3077 5789 937 63.8 MiB 0.14 0.00 7.32112 -142.904 -7.32112 7.32112 0.98 0.00149521 0.00139189 0.0860334 0.0800488 30 3134 30 6.79088e+06 296384 556674. 1926.21 1.87 0.299924 0.272887 24526 138013 -1 2537 17 1139 3308 149923 36424 6.46667 6.46667 -137.764 -6.46667 0 0 706193. 2443.58 0.22 0.10 0.19 -1 -1 0.22 0.0541511 0.0493805 134 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 11.85 vpr 63.12 MiB -1 -1 0.29 18164 13 0.15 -1 -1 32692 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64636 32 32 222 254 1 182 79 17 17 289 -1 unnamed_device 24.2 MiB 2.91 1035 5318 1067 4048 203 63.1 MiB 0.08 0.00 6.99248 -161.236 -6.99248 6.99248 0.98 0.00119305 0.00110818 0.0411075 0.0381666 38 2858 26 6.79088e+06 202080 678818. 2348.85 5.01 0.459228 0.413645 25966 169698 -1 2294 20 1135 2692 145264 34313 6.15454 6.15454 -157.675 -6.15454 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0624907 0.0576967 99 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 9.34 vpr 63.63 MiB -1 -1 0.38 18472 14 0.23 -1 -1 33060 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65156 32 32 267 299 1 198 81 17 17 289 -1 unnamed_device 24.7 MiB 1.53 1250 4456 885 3313 258 63.6 MiB 0.08 0.00 8.38045 -174.115 -8.38045 8.38045 0.97 0.00147326 0.00137102 0.0434731 0.04044 36 3427 26 6.79088e+06 229024 648988. 2245.63 3.69 0.36826 0.332642 25390 158009 -1 2808 18 1276 3469 208347 47025 7.22207 7.22207 -166.963 -7.22207 0 0 828058. 2865.25 0.24 0.11 0.22 -1 -1 0.24 0.0559928 0.0510465 122 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 9.92 vpr 64.05 MiB -1 -1 0.39 19068 15 0.39 -1 -1 32940 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65588 32 32 334 366 1 250 88 17 17 289 -1 unnamed_device 25.1 MiB 1.56 1484 9253 2259 6050 944 64.1 MiB 0.16 0.00 8.87836 -189.569 -8.87836 8.87836 0.98 0.00186797 0.00173721 0.0965149 0.0897557 38 3945 37 6.79088e+06 323328 678818. 2348.85 3.84 0.554576 0.50383 25966 169698 -1 3143 21 1649 4343 214655 50917 7.89125 7.89125 -181.407 -7.89125 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0800318 0.0731074 164 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 9.27 vpr 63.45 MiB -1 -1 0.32 18084 11 0.16 -1 -1 32688 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64972 32 32 220 252 1 168 80 17 17 289 -1 unnamed_device 24.7 MiB 1.50 863 10916 3769 4696 2451 63.4 MiB 0.14 0.00 6.70603 -139.827 -6.70603 6.70603 0.97 0.00116841 0.00108461 0.0777766 0.0722202 36 2511 30 6.79088e+06 215552 648988. 2245.63 3.83 0.349074 0.315923 25390 158009 -1 2027 19 920 2519 145061 35030 5.78973 5.78973 -134.383 -5.78973 0 0 828058. 2865.25 0.25 0.09 0.22 -1 -1 0.25 0.0462569 0.0420303 97 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 19.47 vpr 63.26 MiB -1 -1 0.31 18116 12 0.18 -1 -1 33288 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64780 31 32 244 276 1 191 80 17 17 289 -1 unnamed_device 24.7 MiB 1.47 1084 6788 1723 4832 233 63.3 MiB 0.10 0.00 6.66627 -147.96 -6.66627 6.66627 0.97 0.00131576 0.0012248 0.0558682 0.0519281 40 2780 20 6.79088e+06 229024 706193. 2443.58 13.92 0.601601 0.541679 26254 175826 -1 2740 20 1239 3180 205825 46838 5.99337 5.99337 -145.443 -5.99337 0 0 926341. 3205.33 0.29 0.12 0.26 -1 -1 0.29 0.0553206 0.050329 110 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 10.66 vpr 63.73 MiB -1 -1 0.39 18652 12 0.29 -1 -1 32956 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65264 32 32 300 332 1 218 83 17 17 289 -1 unnamed_device 24.7 MiB 1.14 1207 11783 4120 5343 2320 63.7 MiB 0.19 0.00 7.30286 -159.953 -7.30286 7.30286 0.98 0.0016957 0.00157541 0.116033 0.107845 46 2968 18 6.79088e+06 255968 828058. 2865.25 5.04 0.554358 0.502054 27406 200422 -1 2436 19 1270 3729 172272 41575 6.49812 6.49812 -147.835 -6.49812 0 0 1.01997e+06 3529.29 0.30 0.12 0.30 -1 -1 0.30 0.0676252 0.0617643 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 12.40 vpr 63.76 MiB -1 -1 0.38 18580 12 0.23 -1 -1 33084 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65292 32 32 271 303 1 210 83 17 17 289 -1 unnamed_device 24.8 MiB 1.67 1287 12503 3462 6480 2561 63.8 MiB 0.19 0.00 7.56098 -155.748 -7.56098 7.56098 0.98 0.00150671 0.00139839 0.109627 0.101944 44 3668 30 6.79088e+06 255968 787024. 2723.27 6.43 0.660025 0.597397 27118 194962 -1 2910 16 1360 4012 229929 50598 6.38062 6.38062 -147.555 -6.38062 0 0 997811. 3452.63 0.29 0.11 0.28 -1 -1 0.29 0.0522748 0.0477238 129 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 12.28 vpr 64.21 MiB -1 -1 0.37 19140 14 0.43 -1 -1 32872 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65748 32 32 327 359 1 236 86 17 17 289 -1 unnamed_device 25.2 MiB 1.72 1355 14639 3834 9114 1691 64.2 MiB 0.24 0.00 8.8746 -178.899 -8.8746 8.8746 0.98 0.00186324 0.00173245 0.150354 0.139789 46 3322 20 6.79088e+06 296384 828058. 2865.25 5.89 0.682154 0.620862 27406 200422 -1 2864 18 1539 4662 221770 52936 7.78601 7.78601 -168.294 -7.78601 0 0 1.01997e+06 3529.29 0.29 0.13 0.29 -1 -1 0.29 0.0704516 0.0644335 167 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 22.62 vpr 63.45 MiB -1 -1 0.36 18252 12 0.21 -1 -1 32852 -1 -1 19 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64968 30 32 246 278 1 190 81 17 17 289 -1 unnamed_device 24.5 MiB 1.06 1159 7956 2272 5164 520 63.4 MiB 0.12 0.00 7.18863 -142.1 -7.18863 7.18863 0.98 0.00141262 0.0013155 0.0694889 0.0646064 40 2700 42 6.79088e+06 255968 706193. 2443.58 17.47 0.649344 0.584989 26254 175826 -1 2779 17 1231 3589 231543 51904 6.20488 6.20488 -136.416 -6.20488 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.050337 0.0458544 120 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 9.70 vpr 63.07 MiB -1 -1 0.32 18084 11 0.18 -1 -1 32700 -1 -1 19 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64584 27 32 219 251 1 164 78 17 17 289 -1 unnamed_device 24.4 MiB 1.52 723 8378 2042 5918 418 63.1 MiB 0.11 0.00 7.21752 -126.98 -7.21752 7.21752 0.97 0.00120044 0.0011156 0.0647902 0.060031 34 2521 45 6.79088e+06 255968 618332. 2139.56 4.33 0.471284 0.425056 25102 150614 -1 1947 19 999 2684 131042 33807 6.28323 6.28323 -124.722 -6.28323 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0478212 0.0434553 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 11.81 vpr 64.50 MiB -1 -1 0.40 19260 13 0.41 -1 -1 33004 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 66048 32 32 380 412 1 275 90 17 17 289 -1 unnamed_device 25.5 MiB 1.82 1657 9537 2520 6357 660 64.5 MiB 0.18 0.00 8.12297 -168.527 -8.12297 8.12297 0.98 0.00207953 0.00193462 0.105821 0.0985591 46 4448 24 6.79088e+06 350272 828058. 2865.25 5.35 0.75224 0.683284 27406 200422 -1 3434 16 1686 5219 251926 57614 7.01061 7.01061 -157.087 -7.01061 0 0 1.01997e+06 3529.29 0.29 0.14 0.29 -1 -1 0.29 0.071957 0.0660032 189 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 9.24 vpr 63.66 MiB -1 -1 0.42 18592 14 0.25 -1 -1 32944 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65192 31 32 277 309 1 196 84 17 17 289 -1 unnamed_device 24.6 MiB 1.50 1072 7770 1789 5369 612 63.7 MiB 0.12 0.00 8.3779 -165.706 -8.3779 8.3779 0.98 0.00153116 0.00142472 0.0689774 0.0641698 36 2954 27 6.79088e+06 282912 648988. 2245.63 3.53 0.41584 0.376532 25390 158009 -1 2575 17 1149 3106 171141 41348 7.4761 7.4761 -163.479 -7.4761 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0553103 0.0504823 129 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 8.72 vpr 63.41 MiB -1 -1 0.35 18252 12 0.16 -1 -1 32584 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64936 32 32 229 261 1 176 82 17 17 289 -1 unnamed_device 24.6 MiB 1.31 1078 7914 1805 5400 709 63.4 MiB 0.11 0.00 7.28787 -159.969 -7.28787 7.28787 0.97 0.00126307 0.00117255 0.0597664 0.0555111 34 3090 48 6.79088e+06 242496 618332. 2139.56 3.49 0.371761 0.335247 25102 150614 -1 2595 18 1191 2973 179184 41997 6.39287 6.39287 -155.868 -6.39287 0 0 787024. 2723.27 0.24 0.10 0.21 -1 -1 0.24 0.0480921 0.0437396 107 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 11.11 vpr 63.81 MiB -1 -1 0.36 18364 13 0.27 -1 -1 32868 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65344 32 32 263 295 1 196 84 17 17 289 -1 unnamed_device 24.9 MiB 1.48 1065 10698 4067 5787 844 63.8 MiB 0.16 0.00 7.98061 -163.524 -7.98061 7.98061 0.98 0.00148442 0.00137982 0.0911531 0.0847444 40 2880 27 6.79088e+06 269440 706193. 2443.58 5.36 0.644329 0.583151 26254 175826 -1 2577 20 1264 3580 194447 46582 6.79921 6.79921 -155.795 -6.79921 0 0 926341. 3205.33 0.27 0.12 0.25 -1 -1 0.27 0.0614162 0.0559731 128 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 12.43 vpr 64.09 MiB -1 -1 0.39 18912 13 0.31 -1 -1 32932 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65632 31 32 321 353 1 242 86 17 17 289 -1 unnamed_device 25.2 MiB 1.47 1396 6890 1500 5037 353 64.1 MiB 0.13 0.00 7.43872 -154.496 -7.43872 7.43872 0.98 0.00178836 0.00166216 0.070398 0.0654149 44 4055 44 6.79088e+06 309856 787024. 2723.27 6.50 0.752514 0.681105 27118 194962 -1 3137 17 1587 4474 244442 56879 6.70957 6.70957 -150.314 -6.70957 0 0 997811. 3452.63 0.29 0.13 0.28 -1 -1 0.29 0.0645059 0.0589915 156 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 18.97 vpr 64.04 MiB -1 -1 0.36 18204 11 0.22 -1 -1 32744 -1 -1 22 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65580 30 32 287 319 1 199 84 17 17 289 -1 unnamed_device 25.0 MiB 1.28 1110 11613 3419 5918 2276 64.0 MiB 0.18 0.00 7.42892 -141.349 -7.42892 7.42892 0.99 0.00156548 0.00145507 0.108618 0.101107 38 3193 24 6.79088e+06 296384 678818. 2348.85 13.43 0.703849 0.636024 25966 169698 -1 2450 18 1255 3806 185673 45667 6.37282 6.37282 -134.29 -6.37282 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0596023 0.0543639 139 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 10.80 vpr 63.93 MiB -1 -1 0.37 18416 15 0.34 -1 -1 32860 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65460 32 32 296 328 1 217 83 17 17 289 -1 unnamed_device 24.9 MiB 1.31 1158 4223 686 3480 57 63.9 MiB 0.08 0.00 8.41622 -176.296 -8.41622 8.41622 0.98 0.0016541 0.00153766 0.0438849 0.0408198 46 2996 20 6.79088e+06 255968 828058. 2865.25 5.07 0.544174 0.491716 27406 200422 -1 2611 17 1312 4148 200248 47302 7.21437 7.21437 -161.389 -7.21437 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0607296 0.0554354 145 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 13.57 vpr 63.76 MiB -1 -1 0.40 18896 13 0.31 -1 -1 32904 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65288 32 32 285 317 1 216 84 17 17 289 -1 unnamed_device 24.6 MiB 1.30 1276 7221 1624 4993 604 63.8 MiB 0.12 0.00 7.85531 -170.15 -7.85531 7.85531 0.97 0.00161422 0.00150355 0.0687366 0.0639099 30 3756 37 6.79088e+06 269440 556674. 1926.21 8.13 0.638946 0.577362 24526 138013 -1 3024 18 1415 3999 216812 60917 6.67391 6.67391 -158.178 -6.67391 0 0 706193. 2443.58 0.22 0.13 0.19 -1 -1 0.22 0.0614443 0.05609 141 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 10.82 vpr 63.21 MiB -1 -1 0.33 18048 12 0.19 -1 -1 32868 -1 -1 19 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64732 29 32 239 271 1 187 80 17 17 289 -1 unnamed_device 24.6 MiB 1.79 941 12292 3647 6240 2405 63.2 MiB 0.17 0.00 7.84567 -154.348 -7.84567 7.84567 0.99 0.00130096 0.00120855 0.097316 0.0904772 44 2528 26 6.79088e+06 255968 787024. 2723.27 4.88 0.505988 0.457683 27118 194962 -1 2136 16 1166 2991 149257 35428 6.75996 6.75996 -141.27 -6.75996 0 0 997811. 3452.63 0.29 0.09 0.28 -1 -1 0.29 0.0445335 0.0406474 112 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 11.01 vpr 63.40 MiB -1 -1 0.33 18344 11 0.15 -1 -1 32796 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64924 32 32 235 267 1 177 79 17 17 289 -1 unnamed_device 24.4 MiB 2.19 1083 3966 758 3081 127 63.4 MiB 0.07 0.00 6.83947 -148.082 -6.83947 6.83947 0.98 0.00122846 0.00114099 0.0325127 0.0301896 36 2896 24 6.79088e+06 202080 648988. 2245.63 4.94 0.422664 0.380235 25390 158009 -1 2468 17 1111 2929 163629 38214 6.10302 6.10302 -143.535 -6.10302 0 0 828058. 2865.25 0.25 0.09 0.22 -1 -1 0.25 0.0444778 0.0404276 99 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 9.17 vpr 64.05 MiB -1 -1 0.37 18328 13 0.31 -1 -1 32888 -1 -1 21 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65588 31 32 294 326 1 213 84 17 17 289 -1 unnamed_device 25.0 MiB 1.26 1276 7221 1604 4833 784 64.1 MiB 0.12 0.00 8.37916 -162.744 -8.37916 8.37916 0.99 0.00161883 0.00150562 0.0693481 0.0645369 36 3763 50 6.79088e+06 282912 648988. 2245.63 3.64 0.458519 0.414772 25390 158009 -1 3074 18 1456 4348 246996 56864 7.06981 7.06981 -153.026 -7.06981 0 0 828058. 2865.25 0.25 0.13 0.22 -1 -1 0.25 0.0624931 0.0570744 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 9.70 vpr 63.05 MiB -1 -1 0.32 18080 10 0.16 -1 -1 33200 -1 -1 17 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64568 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 24.3 MiB 1.26 808 5722 1225 4266 231 63.1 MiB 0.08 0.00 6.21616 -120.606 -6.21616 6.21616 0.97 0.00118757 0.0011031 0.0446662 0.0415316 34 2585 26 6.79088e+06 229024 618332. 2139.56 4.52 0.411629 0.370718 25102 150614 -1 2029 16 903 2153 122733 31537 5.32762 5.32762 -117.55 -5.32762 0 0 787024. 2723.27 0.24 0.08 0.21 -1 -1 0.24 0.0407854 0.0371437 98 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 10.46 vpr 63.28 MiB -1 -1 0.33 18056 14 0.19 -1 -1 32860 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64800 32 32 239 271 1 183 82 17 17 289 -1 unnamed_device 24.7 MiB 2.56 1099 12720 3439 7948 1333 63.3 MiB 0.17 0.00 7.66942 -163.822 -7.66942 7.66942 0.97 0.0012959 0.00120402 0.096012 0.0891286 36 2982 23 6.79088e+06 242496 648988. 2245.63 3.86 0.376387 0.341778 25390 158009 -1 2549 19 1212 3091 182078 42016 6.79572 6.79572 -158.591 -6.79572 0 0 828058. 2865.25 0.25 0.10 0.22 -1 -1 0.25 0.0509555 0.0463869 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 18.64 vpr 63.82 MiB -1 -1 0.38 18776 13 0.26 -1 -1 32832 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65348 31 32 266 298 1 209 82 17 17 289 -1 unnamed_device 24.8 MiB 1.91 1233 13432 4516 6489 2427 63.8 MiB 0.19 0.00 7.95965 -167.858 -7.95965 7.95965 0.98 0.00146643 0.00136392 0.115313 0.107233 38 3368 30 6.79088e+06 255968 678818. 2348.85 12.34 0.675079 0.610327 25966 169698 -1 2771 16 1331 3582 188174 43769 6.87761 6.87761 -160.748 -6.87761 0 0 902133. 3121.57 0.28 0.11 0.24 -1 -1 0.28 0.0512451 0.0467968 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 11.41 vpr 63.28 MiB -1 -1 0.32 17900 12 0.15 -1 -1 32656 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64800 31 32 225 257 1 171 80 17 17 289 -1 unnamed_device 24.7 MiB 2.96 973 6100 1428 4438 234 63.3 MiB 0.09 0.00 7.06748 -154.36 -7.06748 7.06748 0.97 0.00121059 0.00111603 0.0461202 0.0426719 38 2600 27 6.79088e+06 229024 678818. 2348.85 4.60 0.425303 0.383129 25966 169698 -1 2131 15 929 2205 117295 27601 6.25178 6.25178 -147.479 -6.25178 0 0 902133. 3121.57 0.28 0.08 0.24 -1 -1 0.28 0.0399158 0.0364201 96 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 12.05 vpr 63.86 MiB -1 -1 0.38 18288 12 0.21 -1 -1 33004 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65396 32 32 288 320 1 202 82 17 17 289 -1 unnamed_device 24.8 MiB 1.88 1283 13432 3933 7023 2476 63.9 MiB 0.20 0.00 6.994 -152.251 -6.994 6.994 0.99 0.00154956 0.00143909 0.122452 0.113706 44 3086 48 6.79088e+06 242496 787024. 2723.27 5.70 0.695951 0.629518 27118 194962 -1 2544 30 1195 3692 326168 141599 6.19713 6.19713 -145.309 -6.19713 0 0 997811. 3452.63 0.29 0.22 0.29 -1 -1 0.29 0.0888387 0.0805928 130 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 10.34 vpr 64.00 MiB -1 -1 0.43 18568 13 0.28 -1 -1 33044 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65532 31 32 282 314 1 210 83 17 17 289 -1 unnamed_device 25.2 MiB 1.01 1255 7103 1784 4908 411 64.0 MiB 0.12 0.00 7.93183 -164.51 -7.93183 7.93183 0.98 0.00159568 0.00148379 0.0675629 0.0628266 40 2974 32 6.79088e+06 269440 706193. 2443.58 5.00 0.623598 0.563752 26254 175826 -1 3073 17 1262 3579 209934 48633 7.01056 7.01056 -159.123 -7.01056 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0578623 0.0528202 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 10.71 vpr 63.24 MiB -1 -1 0.33 18008 11 0.17 -1 -1 32900 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64756 32 32 233 265 1 182 79 17 17 289 -1 unnamed_device 24.7 MiB 1.77 990 7515 1854 5471 190 63.2 MiB 0.11 0.00 6.41871 -149.746 -6.41871 6.41871 0.98 0.0012477 0.0011586 0.0596556 0.0553959 40 2632 22 6.79088e+06 202080 706193. 2443.58 4.91 0.42579 0.384381 26254 175826 -1 2554 16 1203 3245 217198 53281 5.48535 5.48535 -145.233 -5.48535 0 0 926341. 3205.33 0.27 0.10 0.25 -1 -1 0.27 0.0432444 0.0394024 105 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 10.85 vpr 63.47 MiB -1 -1 0.29 18088 13 0.21 -1 -1 32916 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64992 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 24.5 MiB 2.11 917 4473 833 3541 99 63.5 MiB 0.08 0.00 7.87829 -165.569 -7.87829 7.87829 0.98 0.00140377 0.00130485 0.0411595 0.0382879 44 2628 20 6.79088e+06 202080 787024. 2723.27 4.75 0.463981 0.418397 27118 194962 -1 2036 19 1037 2825 137924 34430 7.21088 7.21088 -158.222 -7.21088 0 0 997811. 3452.63 0.29 0.10 0.28 -1 -1 0.29 0.0550081 0.0500355 111 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 11.36 vpr 63.61 MiB -1 -1 0.34 18388 13 0.25 -1 -1 33072 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65140 32 32 285 317 1 216 82 17 17 289 -1 unnamed_device 24.6 MiB 1.23 1260 5600 1161 4083 356 63.6 MiB 0.11 0.00 7.71882 -168.307 -7.71882 7.71882 0.99 0.00151034 0.00140475 0.0564 0.0524736 38 3878 37 6.79088e+06 242496 678818. 2348.85 5.96 0.428216 0.386832 25966 169698 -1 2922 16 1436 3886 207161 47854 6.78802 6.78802 -163.375 -6.78802 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0536996 0.0490596 135 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 11.61 vpr 63.61 MiB -1 -1 0.37 18400 11 0.21 -1 -1 33312 -1 -1 20 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65140 29 32 243 275 1 190 81 17 17 289 -1 unnamed_device 24.7 MiB 1.27 1127 10581 2985 5703 1893 63.6 MiB 0.15 0.00 6.61008 -134.136 -6.61008 6.61008 0.98 0.00134631 0.0012515 0.0858844 0.0796687 36 3251 47 6.79088e+06 269440 648988. 2245.63 6.13 0.432083 0.390591 25390 158009 -1 2530 17 1152 3292 192373 44983 5.42613 5.42613 -127.856 -5.42613 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.049472 0.0450691 115 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 10.56 vpr 64.14 MiB -1 -1 0.41 18880 14 0.32 -1 -1 33356 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65676 32 32 318 350 1 240 87 17 17 289 -1 unnamed_device 25.2 MiB 1.19 1488 8535 2146 5424 965 64.1 MiB 0.15 0.00 8.76875 -186.498 -8.76875 8.76875 0.98 0.00175369 0.00162929 0.0842849 0.0783989 46 3206 24 6.79088e+06 309856 828058. 2865.25 4.86 0.621757 0.563574 27406 200422 -1 2683 15 1347 3535 164868 39504 7.52305 7.52305 -170.091 -7.52305 0 0 1.01997e+06 3529.29 0.31 0.11 0.29 -1 -1 0.31 0.0593086 0.0543184 159 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 10.96 vpr 63.23 MiB -1 -1 0.30 18220 12 0.15 -1 -1 32812 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64744 31 32 222 254 1 185 81 17 17 289 -1 unnamed_device 24.7 MiB 2.74 1096 6031 1363 3831 837 63.2 MiB 0.09 0.00 6.47142 -144.358 -6.47142 6.47142 0.81 0.00118613 0.00110194 0.044275 0.0411274 36 2859 30 6.79088e+06 242496 648988. 2245.63 4.48 0.426468 0.384151 25390 158009 -1 2445 16 1039 2390 144239 33343 5.9204 5.9204 -147.126 -5.9204 0 0 828058. 2865.25 0.26 0.09 0.23 -1 -1 0.26 0.0412789 0.0376578 105 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 11.94 vpr 63.71 MiB -1 -1 0.40 18868 13 0.28 -1 -1 32752 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65236 32 32 282 314 1 207 83 17 17 289 -1 unnamed_device 24.7 MiB 1.26 1347 4043 780 2904 359 63.7 MiB 0.08 0.00 8.02094 -165.56 -8.02094 8.02094 1.00 0.00155892 0.00144944 0.0397974 0.0370641 36 4006 44 6.79088e+06 255968 648988. 2245.63 6.38 0.432068 0.390366 25390 158009 -1 3232 22 1794 5209 328608 84682 6.92097 6.92097 -160.152 -6.92097 0 0 828058. 2865.25 0.25 0.16 0.23 -1 -1 0.25 0.0700393 0.0637407 134 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 8.23 vpr 63.11 MiB -1 -1 0.35 18444 13 0.18 -1 -1 32592 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64620 32 32 238 270 1 179 82 17 17 289 -1 unnamed_device 24.5 MiB 1.22 1085 7914 1906 5077 931 63.1 MiB 0.11 0.00 7.51507 -164.29 -7.51507 7.51507 0.97 0.00127453 0.00118377 0.0598055 0.0554953 36 2840 22 6.79088e+06 242496 648988. 2245.63 3.06 0.32739 0.296132 25390 158009 -1 2374 19 1064 2717 146122 34939 6.54507 6.54507 -157.917 -6.54507 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0500509 0.0455478 105 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 11.81 vpr 63.79 MiB -1 -1 0.37 18572 12 0.21 -1 -1 32804 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 32 32 269 301 1 191 84 17 17 289 -1 unnamed_device 24.8 MiB 1.64 1205 12711 3448 7705 1558 63.8 MiB 0.19 0.00 7.30358 -162.225 -7.30358 7.30358 1.00 0.00153451 0.00142941 0.111939 0.103238 36 3518 39 6.79088e+06 269440 648988. 2245.63 5.96 0.486151 0.440561 25390 158009 -1 2763 18 1317 4299 250228 55535 6.19718 6.19718 -151.291 -6.19718 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0583477 0.0531165 128 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 9.21 vpr 64.26 MiB -1 -1 0.42 19200 15 0.47 -1 -1 33292 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65804 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 25.3 MiB 1.08 1525 10583 2684 6530 1369 64.3 MiB 0.20 0.00 9.41018 -195.78 -9.41018 9.41018 1.01 0.00203124 0.00187956 0.116514 0.108292 44 4144 21 6.79088e+06 336800 787024. 2723.27 3.41 0.552878 0.503326 27118 194962 -1 3457 19 1852 5708 296428 67743 8.35331 8.35331 -184.326 -8.35331 0 0 997811. 3452.63 0.29 0.16 0.28 -1 -1 0.29 0.0802029 0.0734137 183 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 10.40 vpr 62.88 MiB -1 -1 0.28 17836 10 0.11 -1 -1 32580 -1 -1 11 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64388 30 32 174 206 1 132 73 17 17 289 -1 unnamed_device 24.2 MiB 1.81 569 10257 4278 5714 265 62.9 MiB 0.12 0.00 4.82946 -112.742 -4.82946 4.82946 0.98 0.000893503 0.000827804 0.0628776 0.0583853 38 1762 34 6.79088e+06 148192 678818. 2348.85 4.69 0.367254 0.329568 25966 169698 -1 1342 17 741 1752 87044 22399 4.50726 4.50726 -111.454 -4.50726 0 0 902133. 3121.57 0.26 0.06 0.24 -1 -1 0.26 0.0318484 0.0287997 64 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 13.24 vpr 63.36 MiB -1 -1 0.33 18072 13 0.18 -1 -1 32880 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64876 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 24.8 MiB 1.40 1029 5825 1231 4146 448 63.4 MiB 0.09 0.00 7.87321 -160.437 -7.87321 7.87321 0.98 0.00124329 0.00115598 0.0464781 0.0432016 30 2839 24 6.79088e+06 229024 556674. 1926.21 7.98 0.40481 0.365135 24526 138013 -1 2413 18 1130 2852 155954 37513 6.96022 6.96022 -156.578 -6.96022 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0471314 0.0428855 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 10.42 vpr 63.79 MiB -1 -1 0.33 17972 12 0.19 -1 -1 32800 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 32 32 264 296 1 198 81 17 17 289 -1 unnamed_device 24.9 MiB 2.01 1009 12506 4599 6333 1574 63.8 MiB 0.18 0.00 7.16042 -155.076 -7.16042 7.16042 0.97 0.00142087 0.00132016 0.105937 0.0984453 38 3042 24 6.79088e+06 229024 678818. 2348.85 4.28 0.414182 0.375409 25966 169698 -1 2357 26 1205 3080 222416 78231 6.53383 6.53383 -154.377 -6.53383 0 0 902133. 3121.57 0.26 0.15 0.24 -1 -1 0.26 0.0719664 0.0652418 115 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 6.30 vpr 62.90 MiB -1 -1 0.28 17792 9 0.13 -1 -1 32568 -1 -1 19 25 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64412 25 32 183 215 1 134 76 17 17 289 -1 unnamed_device 24.2 MiB 0.91 748 10796 2964 6480 1352 62.9 MiB 0.12 0.00 4.9582 -97.454 -4.9582 4.9582 1.01 0.00099209 0.000921663 0.0703934 0.065426 28 2108 39 6.79088e+06 255968 531479. 1839.03 1.63 0.226946 0.205579 23950 126010 -1 2012 17 865 2383 160854 39749 4.5968 4.5968 -103.965 -4.5968 0 0 648988. 2245.63 0.20 0.08 0.18 -1 -1 0.20 0.0360154 0.0326863 86 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 8.76 vpr 63.68 MiB -1 -1 0.39 18728 12 0.25 -1 -1 32856 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65204 32 32 300 332 1 227 85 17 17 289 -1 unnamed_device 24.6 MiB 1.26 1301 7897 1769 4878 1250 63.7 MiB 0.13 0.00 7.57033 -160.892 -7.57033 7.57033 0.98 0.00162846 0.0015141 0.0745303 0.0694002 44 3545 32 6.79088e+06 282912 787024. 2723.27 3.20 0.449902 0.407984 27118 194962 -1 2947 16 1443 4057 223019 51107 6.67037 6.67037 -154.941 -6.67037 0 0 997811. 3452.63 0.31 0.12 0.28 -1 -1 0.31 0.058053 0.053156 140 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 17.63 vpr 63.89 MiB -1 -1 0.42 18880 13 0.30 -1 -1 32808 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65428 31 32 290 322 1 215 87 17 17 289 -1 unnamed_device 24.8 MiB 1.50 1277 8535 2081 5648 806 63.9 MiB 0.14 0.00 8.4853 -176.747 -8.4853 8.4853 0.98 0.00163914 0.00152434 0.0780789 0.0725331 30 3989 49 6.79088e+06 323328 556674. 1926.21 11.84 0.597353 0.540321 24526 138013 -1 3150 24 1569 4575 298065 87745 7.3039 7.3039 -169.845 -7.3039 0 0 706193. 2443.58 0.22 0.17 0.19 -1 -1 0.22 0.0793723 0.0722607 146 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.25 vpr 64.16 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30088 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65700 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 25.3 MiB 3.04 992 16773 5017 8446 3310 64.2 MiB 0.23 0.00 5.50182 -160.116 -5.50182 5.50182 0.98 0.0011443 0.0010638 0.0989762 0.0920118 30 2907 29 6.87369e+06 363320 556674. 1926.21 1.39 0.257661 0.234467 25186 138497 -1 2019 22 1468 2342 139855 39853 4.59585 4.59585 -150.948 -4.59585 0 0 706193. 2443.58 0.22 0.10 0.19 -1 -1 0.22 0.0489824 0.0442974 142 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.35 vpr 64.27 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30612 -1 -1 24 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65816 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 25.3 MiB 2.75 985 11804 3116 7588 1100 64.3 MiB 0.17 0.00 4.6679 -136.949 -4.6679 4.6679 0.97 0.00115471 0.00107614 0.0758047 0.070225 36 2313 25 6.87369e+06 335372 648988. 2245.63 1.80 0.265478 0.240452 26050 158493 -1 1957 21 1664 2538 163246 41530 4.13206 4.13206 -140.79 -4.13206 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0477756 0.0432356 141 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.63 vpr 63.58 MiB -1 -1 0.24 18264 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65104 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.9 MiB 3.13 979 10873 2754 7440 679 63.6 MiB 0.15 0.00 4.36457 -122.364 -4.36457 4.36457 0.98 0.00101485 0.000944772 0.0612377 0.0568822 34 2494 23 6.87369e+06 293451 618332. 2139.56 1.79 0.272768 0.245866 25762 151098 -1 2062 21 1370 1826 121901 30396 3.86296 3.86296 -123.863 -3.86296 0 0 787024. 2723.27 0.23 0.08 0.21 -1 -1 0.23 0.0411018 0.0370464 124 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.73 vpr 63.73 MiB -1 -1 0.24 18316 1 0.05 -1 -1 30388 -1 -1 29 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65256 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.9 MiB 1.07 974 13557 4041 7216 2300 63.7 MiB 0.17 0.00 4.63038 -128.348 -4.63038 4.63038 0.98 0.00102534 0.000953943 0.071843 0.0668219 34 2348 37 6.87369e+06 405241 618332. 2139.56 1.89 0.311091 0.281006 25762 151098 -1 1986 23 1483 2735 188551 44137 3.5538 3.5538 -117.775 -3.5538 0 0 787024. 2723.27 0.23 0.10 0.22 -1 -1 0.23 0.0451311 0.0406217 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.39 vpr 64.16 MiB -1 -1 0.25 18336 1 0.03 -1 -1 30548 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65696 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 25.2 MiB 1.55 1051 17023 5465 9028 2530 64.2 MiB 0.25 0.00 4.52512 -133.724 -4.52512 4.52512 0.98 0.00110981 0.00103249 0.102483 0.0952243 34 2748 23 6.87369e+06 377294 618332. 2139.56 1.99 0.337758 0.306332 25762 151098 -1 2260 25 1877 3685 273909 63459 3.7964 3.7964 -131.446 -3.7964 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0529123 0.0477277 131 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.32 vpr 63.84 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30496 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65368 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 24.8 MiB 1.35 1058 17134 5267 9607 2260 63.8 MiB 0.23 0.00 3.34527 -120.073 -3.34527 3.34527 0.98 0.00119793 0.00110646 0.0976872 0.0906707 32 2804 23 6.87369e+06 419215 586450. 2029.24 1.18 0.250193 0.228009 25474 144626 -1 2178 18 1305 2142 159735 37874 3.14681 3.14681 -122.603 -3.14681 0 0 744469. 2576.02 0.23 0.09 0.20 -1 -1 0.23 0.0423421 0.038346 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.45 vpr 63.23 MiB -1 -1 0.25 18112 1 0.03 -1 -1 30844 -1 -1 19 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64744 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 24.5 MiB 2.09 666 11532 3128 7372 1032 63.2 MiB 0.13 0.00 3.87934 -105.571 -3.87934 3.87934 0.98 0.000874073 0.00081309 0.062635 0.0582412 34 1737 20 6.87369e+06 265503 618332. 2139.56 1.67 0.24141 0.217428 25762 151098 -1 1463 23 1258 2119 141936 35487 3.08656 3.08656 -101.901 -3.08656 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0388435 0.0348751 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.65 vpr 63.50 MiB -1 -1 0.23 17800 1 0.03 -1 -1 30208 -1 -1 32 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65024 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 24.7 MiB 0.89 977 15431 4363 8928 2140 63.5 MiB 0.18 0.00 3.48795 -106.181 -3.48795 3.48795 0.98 0.000951088 0.000885706 0.070536 0.0656233 30 2212 17 6.87369e+06 447163 556674. 1926.21 1.09 0.183398 0.166795 25186 138497 -1 1783 21 901 1621 95709 22589 2.45906 2.45906 -96.8659 -2.45906 0 0 706193. 2443.58 0.22 0.07 0.19 -1 -1 0.22 0.0387528 0.0349222 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 8.07 vpr 63.95 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30420 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65488 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 25.1 MiB 2.51 888 12980 4535 6374 2071 64.0 MiB 0.17 0.00 3.31297 -114.045 -3.31297 3.31297 0.98 0.00102987 0.000958071 0.0797922 0.0741604 34 2362 23 6.87369e+06 237555 618332. 2139.56 1.81 0.294943 0.266452 25762 151098 -1 2046 23 1412 2105 177163 41169 3.29221 3.29221 -119.369 -3.29221 0 0 787024. 2723.27 0.24 0.10 0.21 -1 -1 0.24 0.0446593 0.0402042 113 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 8.99 vpr 63.33 MiB -1 -1 0.23 17892 1 0.03 -1 -1 30344 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64848 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 24.6 MiB 3.60 870 10400 2388 6951 1061 63.3 MiB 0.14 0.00 3.96554 -131.116 -3.96554 3.96554 0.98 0.000990951 0.000921192 0.0627907 0.058428 34 2070 20 6.87369e+06 223581 618332. 2139.56 1.73 0.266563 0.24053 25762 151098 -1 1847 20 1272 2078 146085 35624 2.98226 2.98226 -122.084 -2.98226 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0391061 0.0352535 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.42 vpr 63.85 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30472 -1 -1 16 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65380 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 24.9 MiB 2.98 661 6718 1392 5000 326 63.8 MiB 0.10 0.00 3.87398 -111.275 -3.87398 3.87398 0.98 0.000964199 0.000895346 0.0415181 0.038572 34 1793 22 6.87369e+06 223581 618332. 2139.56 1.68 0.244189 0.219224 25762 151098 -1 1526 20 1045 1706 108480 27093 2.97416 2.97416 -107.942 -2.97416 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0382685 0.0344579 98 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 7.96 vpr 63.48 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65008 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 24.6 MiB 2.51 808 7606 1773 5149 684 63.5 MiB 0.11 0.00 3.6704 -113.65 -3.6704 3.6704 1.02 0.000925605 0.000860191 0.0429214 0.039919 34 2174 24 6.87369e+06 237555 618332. 2139.56 1.73 0.240329 0.215869 25762 151098 -1 1741 20 1068 1526 101657 25498 2.84421 2.84421 -109.773 -2.84421 0 0 787024. 2723.27 0.25 0.08 0.21 -1 -1 0.25 0.0372983 0.0335733 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 10.13 vpr 63.83 MiB -1 -1 0.24 18300 1 0.03 -1 -1 30424 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65360 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.9 MiB 3.64 843 12183 3137 7426 1620 63.8 MiB 0.19 0.00 4.18499 -131.201 -4.18499 4.18499 1.01 0.00113424 0.00105519 0.0750428 0.0698303 36 2793 35 6.87369e+06 321398 648988. 2245.63 2.63 0.338766 0.306268 26050 158493 -1 2078 25 2086 3169 213839 54029 3.45051 3.45051 -125.132 -3.45051 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.0539412 0.0487573 142 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.12 vpr 64.11 MiB -1 -1 0.24 18260 1 0.04 -1 -1 30564 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65644 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.2 MiB 2.22 910 14567 3971 8883 1713 64.1 MiB 0.20 0.00 4.81568 -140.871 -4.81568 4.81568 0.98 0.00116276 0.00108092 0.0815832 0.0758138 30 2335 22 6.87369e+06 433189 556674. 1926.21 1.17 0.229859 0.209233 25186 138497 -1 1981 21 1316 2152 135740 32330 3.90966 3.90966 -135.443 -3.90966 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0473572 0.0427597 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.55 vpr 63.63 MiB -1 -1 0.23 18148 1 0.03 -1 -1 30504 -1 -1 19 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65156 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 25.0 MiB 1.85 780 9368 2426 5947 995 63.6 MiB 0.11 0.00 3.03342 -94.7718 -3.03342 3.03342 0.98 0.000848899 0.000789087 0.0481797 0.044763 32 1998 21 6.87369e+06 265503 586450. 2029.24 1.09 0.153334 0.138474 25474 144626 -1 1682 21 1131 1861 141133 33493 2.83796 2.83796 -100.131 -2.83796 0 0 744469. 2576.02 0.23 0.08 0.21 -1 -1 0.23 0.0346071 0.0310545 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 11.92 vpr 63.98 MiB -1 -1 0.26 18184 1 0.03 -1 -1 30560 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65520 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 25.0 MiB 2.08 1098 16273 6888 8626 759 64.0 MiB 0.22 0.00 3.7276 -123.933 -3.7276 3.7276 0.98 0.00119449 0.00111085 0.102426 0.0953018 28 3231 47 6.87369e+06 335372 531479. 1839.03 6.20 0.529615 0.47826 24610 126494 -1 2549 21 1851 3161 246764 60180 3.24491 3.24491 -129.046 -3.24491 0 0 648988. 2245.63 0.18 0.06 0.09 -1 -1 0.18 0.0204454 0.0182892 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.40 vpr 63.83 MiB -1 -1 0.25 18384 1 0.03 -1 -1 30164 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65364 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 24.9 MiB 3.79 1093 10315 2797 6648 870 63.8 MiB 0.15 0.00 4.18499 -137.545 -4.18499 4.18499 0.98 0.00112583 0.00104776 0.065098 0.0605871 34 2760 23 6.87369e+06 293451 618332. 2139.56 1.85 0.300277 0.271492 25762 151098 -1 2299 22 1688 2452 175641 40394 3.21981 3.21981 -127.429 -3.21981 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0478677 0.0432804 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.13 vpr 63.79 MiB -1 -1 0.24 18272 1 0.03 -1 -1 30372 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65316 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 24.6 MiB 2.34 867 16445 5131 9259 2055 63.8 MiB 0.19 0.00 2.85191 -106.24 -2.85191 2.85191 0.98 0.00104707 0.000972587 0.0850268 0.0788939 30 1957 23 6.87369e+06 391268 556674. 1926.21 1.09 0.216397 0.196355 25186 138497 -1 1687 17 1001 1670 92425 22490 2.05152 2.05152 -98.4872 -2.05152 0 0 706193. 2443.58 0.22 0.07 0.19 -1 -1 0.22 0.0353189 0.0318697 109 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.30 vpr 63.11 MiB -1 -1 0.21 18044 1 0.02 -1 -1 30188 -1 -1 14 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64624 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 24.4 MiB 0.77 548 9196 3125 4759 1312 63.1 MiB 0.10 0.00 2.38778 -80.5436 -2.38778 2.38778 0.98 0.000752131 0.000697684 0.0459069 0.0426456 30 1388 20 6.87369e+06 195634 556674. 1926.21 1.00 0.138263 0.124675 25186 138497 -1 1142 20 595 861 53559 13316 2.00282 2.00282 -81.0854 -2.00282 0 0 706193. 2443.58 0.22 0.06 0.20 -1 -1 0.22 0.0300417 0.0268625 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.29 vpr 63.45 MiB -1 -1 0.24 17900 1 0.03 -1 -1 30440 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64968 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 24.6 MiB 3.48 940 10406 3145 6506 755 63.4 MiB 0.15 0.00 5.00887 -149.776 -5.00887 5.00887 1.00 0.000970959 0.000903512 0.0591935 0.0550244 30 2231 23 6.87369e+06 265503 556674. 1926.21 1.14 0.185063 0.167608 25186 138497 -1 1783 20 895 1316 73503 18433 3.51921 3.51921 -132.407 -3.51921 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0498559 0.0446896 116 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.99 vpr 64.07 MiB -1 -1 0.23 18184 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65608 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 25.1 MiB 0.96 1070 16515 4276 10581 1658 64.1 MiB 0.20 0.00 4.18253 -136.483 -4.18253 4.18253 0.98 0.00113529 0.00105568 0.0855962 0.0793811 32 2579 41 6.87369e+06 489084 586450. 2029.24 1.26 0.262688 0.238381 25474 144626 -1 2181 23 1656 2487 196320 45894 3.6701 3.6701 -132.978 -3.6701 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0499437 0.0450938 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.54 vpr 63.90 MiB -1 -1 0.26 18340 1 0.03 -1 -1 30384 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65432 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 24.9 MiB 2.78 1162 10481 3111 6377 993 63.9 MiB 0.16 0.00 4.31025 -134.645 -4.31025 4.31025 0.98 0.00118222 0.00109969 0.0697577 0.0648224 34 2936 20 6.87369e+06 307425 618332. 2139.56 1.92 0.313669 0.283673 25762 151098 -1 2450 21 1676 2669 220322 50176 3.96906 3.96906 -135.816 -3.96906 0 0 787024. 2723.27 0.23 0.11 0.22 -1 -1 0.23 0.0486993 0.044036 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.52 vpr 63.21 MiB -1 -1 0.24 17928 1 0.02 -1 -1 30796 -1 -1 17 26 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64728 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 24.2 MiB 1.85 352 9555 3939 4800 816 63.2 MiB 0.08 0.00 2.60613 -72.4296 -2.60613 2.60613 0.98 0.000649707 0.000601953 0.0408683 0.0378803 30 1268 32 6.87369e+06 237555 556674. 1926.21 1.11 0.133788 0.119984 25186 138497 -1 874 24 657 958 54158 14937 2.40077 2.40077 -73.5537 -2.40077 0 0 706193. 2443.58 0.24 0.06 0.19 -1 -1 0.24 0.0300897 0.0268952 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.82 vpr 63.27 MiB -1 -1 0.22 17808 1 0.03 -1 -1 30540 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64792 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 24.4 MiB 1.33 1029 10263 2694 6379 1190 63.3 MiB 0.14 0.00 4.63338 -131.361 -4.63338 4.63338 0.98 0.00101414 0.000944687 0.0552205 0.0513121 34 2458 24 6.87369e+06 321398 618332. 2139.56 1.78 0.266191 0.240132 25762 151098 -1 2075 18 1263 2223 144129 34300 3.7157 3.7157 -123.537 -3.7157 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0365695 0.0330652 119 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.69 vpr 63.01 MiB -1 -1 0.20 17620 1 0.02 -1 -1 30200 -1 -1 12 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64524 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.3 MiB 0.62 415 9836 3792 4975 1069 63.0 MiB 0.08 0.00 2.58823 -76.4648 -2.58823 2.58823 0.98 0.000622899 0.000576024 0.039891 0.0369066 34 1153 25 6.87369e+06 167686 618332. 2139.56 1.51 0.172124 0.153746 25762 151098 -1 912 19 595 687 42091 12263 2.04382 2.04382 -76.3073 -2.04382 0 0 787024. 2723.27 0.24 0.05 0.21 -1 -1 0.24 0.0236163 0.0211223 65 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.86 vpr 63.54 MiB -1 -1 0.23 18372 1 0.03 -1 -1 30224 -1 -1 30 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65068 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.9 MiB 1.01 1004 15430 3940 9856 1634 63.5 MiB 0.19 0.00 4.64012 -131.611 -4.64012 4.64012 0.98 0.00102386 0.000947836 0.0763163 0.0709925 32 2370 25 6.87369e+06 419215 586450. 2029.24 1.14 0.20909 0.189973 25474 144626 -1 1955 19 1012 1622 112690 27151 3.6168 3.6168 -121.209 -3.6168 0 0 744469. 2576.02 0.23 0.08 0.21 -1 -1 0.23 0.0380194 0.0343337 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 6.45 vpr 63.52 MiB -1 -1 0.23 17796 1 0.03 -1 -1 30452 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65048 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.9 MiB 0.95 1073 17591 5429 9856 2306 63.5 MiB 0.23 0.00 3.58631 -114.754 -3.58631 3.58631 0.98 0.00104234 0.000971114 0.0863022 0.080251 34 2356 21 6.87369e+06 433189 618332. 2139.56 1.74 0.299894 0.271696 25762 151098 -1 2001 17 1097 2004 114780 28989 2.99426 2.99426 -110.868 -2.99426 0 0 787024. 2723.27 0.24 0.08 0.21 -1 -1 0.24 0.0355647 0.0322048 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 7.76 vpr 63.87 MiB -1 -1 0.24 18264 1 0.03 -1 -1 30484 -1 -1 28 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65400 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 1.70 1004 15824 5333 7131 3360 63.9 MiB 0.18 0.00 4.74578 -132.154 -4.74578 4.74578 0.98 0.00110314 0.00102575 0.0873455 0.0812213 34 2517 25 6.87369e+06 391268 618332. 2139.56 2.24 0.326126 0.294952 25762 151098 -1 2002 20 1392 2502 170234 42095 3.74036 3.74036 -124.226 -3.74036 0 0 787024. 2723.27 0.25 0.10 0.22 -1 -1 0.25 0.0431471 0.0390605 131 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.50 vpr 63.32 MiB -1 -1 0.24 18060 1 0.03 -1 -1 30160 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64840 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 24.6 MiB 1.08 894 11776 3852 5929 1995 63.3 MiB 0.16 0.01 3.01142 -109.398 -3.01142 3.01142 1.00 0.00196678 0.00182852 0.0745515 0.0691501 34 2037 20 6.87369e+06 223581 618332. 2139.56 1.68 0.270155 0.243559 25762 151098 -1 1712 18 929 1532 105269 25044 2.77396 2.77396 -109.879 -2.77396 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0342435 0.0308635 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.97 vpr 63.40 MiB -1 -1 0.23 18040 1 0.03 -1 -1 30232 -1 -1 26 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64920 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 24.7 MiB 1.18 686 13738 3515 8195 2028 63.4 MiB 0.15 0.00 3.22907 -99.998 -3.22907 3.22907 0.99 0.000883632 0.000821453 0.0645256 0.0599461 32 1762 24 6.87369e+06 363320 586450. 2029.24 1.11 0.178468 0.161583 25474 144626 -1 1500 20 989 1605 132517 31524 2.95226 2.95226 -99.2967 -2.95226 0 0 744469. 2576.02 0.23 0.08 0.21 -1 -1 0.23 0.0348054 0.031283 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 6.00 vpr 63.39 MiB -1 -1 0.22 18116 1 0.04 -1 -1 30176 -1 -1 18 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64908 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 24.7 MiB 0.99 760 11698 3432 6949 1317 63.4 MiB 0.14 0.00 3.46101 -100.103 -3.46101 3.46101 0.98 0.000881203 0.000819894 0.0640419 0.0595144 32 2165 45 6.87369e+06 251529 586450. 2029.24 1.31 0.213193 0.191937 25474 144626 -1 1700 21 1177 2120 175875 41024 3.17886 3.17886 -104.257 -3.17886 0 0 744469. 2576.02 0.23 0.09 0.21 -1 -1 0.23 0.0362696 0.032557 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 6.60 vpr 63.26 MiB -1 -1 0.22 17820 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64776 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 24.6 MiB 1.37 766 11106 2788 6396 1922 63.3 MiB 0.13 0.00 3.84524 -116.411 -3.84524 3.84524 0.98 0.00089314 0.000831253 0.0588611 0.0547343 32 2100 25 6.87369e+06 237555 586450. 2029.24 1.61 0.210487 0.190014 25474 144626 -1 1720 19 1216 2009 141172 33662 3.07256 3.07256 -113.905 -3.07256 0 0 744469. 2576.02 0.23 0.08 0.21 -1 -1 0.23 0.0335987 0.0302477 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.88 vpr 63.35 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30688 -1 -1 26 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64868 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 24.6 MiB 0.93 707 5831 1162 4318 351 63.3 MiB 0.08 0.00 3.52097 -104.958 -3.52097 3.52097 1.01 0.00091304 0.000849262 0.0293875 0.0273176 26 2214 25 6.87369e+06 363320 503264. 1741.40 1.34 0.14969 0.134687 24322 120374 -1 1894 20 1256 2154 172052 44163 3.08656 3.08656 -112.093 -3.08656 0 0 618332. 2139.56 0.20 0.11 0.17 -1 -1 0.20 0.045102 0.0406306 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.57 vpr 63.18 MiB -1 -1 0.24 18408 1 0.03 -1 -1 30664 -1 -1 25 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64700 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 24.4 MiB 2.75 703 8591 2001 5849 741 63.2 MiB 0.12 0.00 3.08002 -96.8082 -3.08002 3.08002 1.00 0.000945201 0.000878818 0.0459035 0.042706 32 2033 25 6.87369e+06 349346 586450. 2029.24 1.16 0.180004 0.162584 25474 144626 -1 1718 18 1137 1672 133264 33696 2.64507 2.64507 -103.573 -2.64507 0 0 744469. 2576.02 0.23 0.08 0.21 -1 -1 0.23 0.034009 0.030636 106 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.16 vpr 64.05 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30544 -1 -1 40 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65584 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 25.0 MiB 3.03 1195 18160 4666 11113 2381 64.0 MiB 0.24 0.00 4.16289 -124.14 -4.16289 4.16289 0.98 0.00121608 0.00113215 0.0938498 0.0872995 32 3183 26 6.87369e+06 558954 586450. 2029.24 1.26 0.255454 0.232834 25474 144626 -1 2575 23 1683 3262 257508 60411 3.8577 3.8577 -127.04 -3.8577 0 0 744469. 2576.02 0.23 0.12 0.21 -1 -1 0.23 0.054019 0.0489029 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 8.65 vpr 64.38 MiB -1 -1 0.26 18184 1 0.03 -1 -1 30372 -1 -1 38 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65928 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 25.5 MiB 2.90 1033 17476 4934 10272 2270 64.4 MiB 0.23 0.00 3.9888 -134.401 -3.9888 3.9888 0.98 0.00124026 0.00115383 0.0946662 0.0879863 34 2377 21 6.87369e+06 531006 618332. 2139.56 1.84 0.352155 0.319285 25762 151098 -1 2001 20 1649 2643 151204 37530 3.01826 3.01826 -121.038 -3.01826 0 0 787024. 2723.27 0.24 0.10 0.21 -1 -1 0.24 0.0487807 0.0441402 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.28 vpr 63.25 MiB -1 -1 0.24 18164 1 0.03 -1 -1 30332 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64764 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 24.4 MiB 2.82 827 12506 3647 6930 1929 63.2 MiB 0.16 0.00 4.12999 -122.522 -4.12999 4.12999 0.98 0.000929522 0.000864168 0.0693087 0.0644547 34 2104 22 6.87369e+06 251529 618332. 2139.56 1.76 0.261972 0.236133 25762 151098 -1 1852 18 1223 1818 128481 31850 3.41621 3.41621 -120.366 -3.41621 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0338382 0.0304887 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.41 vpr 64.01 MiB -1 -1 0.26 18212 1 0.03 -1 -1 30540 -1 -1 26 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65544 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 25.0 MiB 2.49 986 12959 4044 6276 2639 64.0 MiB 0.19 0.00 3.77586 -121.787 -3.77586 3.77586 1.00 0.00117569 0.00109317 0.0805266 0.0748945 34 2946 26 6.87369e+06 363320 618332. 2139.56 1.98 0.336351 0.304182 25762 151098 -1 2304 22 1663 2907 199956 48110 3.05556 3.05556 -118.953 -3.05556 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0506779 0.0458184 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.31 vpr 64.37 MiB -1 -1 0.25 18360 1 0.03 -1 -1 30412 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65916 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 25.5 MiB 4.25 1219 10033 2675 6590 768 64.4 MiB 0.16 0.00 5.67608 -170.361 -5.67608 5.67608 0.97 0.00120478 0.0011218 0.0647023 0.0602167 34 3276 43 6.87369e+06 349346 618332. 2139.56 2.21 0.359361 0.325078 25762 151098 -1 2727 23 2233 3354 262644 61424 5.0075 5.0075 -173.223 -5.0075 0 0 787024. 2723.27 0.23 0.13 0.21 -1 -1 0.23 0.0533521 0.0481963 159 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.86 vpr 64.31 MiB -1 -1 0.26 18192 1 0.03 -1 -1 30528 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65856 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 25.3 MiB 4.03 920 11145 2994 7135 1016 64.3 MiB 0.18 0.00 5.24874 -155.932 -5.24874 5.24874 0.98 0.00121858 0.00113127 0.0705193 0.0655558 34 2601 27 6.87369e+06 377294 618332. 2139.56 2.03 0.334648 0.302622 25762 151098 -1 2164 22 1862 2854 193808 49919 4.67315 4.67315 -156.549 -4.67315 0 0 787024. 2723.27 0.24 0.11 0.21 -1 -1 0.24 0.0527701 0.047842 152 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.74 vpr 63.98 MiB -1 -1 0.26 18336 1 0.03 -1 -1 30484 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65512 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 25.0 MiB 2.70 890 9058 2302 6004 752 64.0 MiB 0.14 0.00 4.13563 -126.898 -4.13563 4.13563 0.97 0.00113365 0.00105463 0.055563 0.0516998 32 2867 25 6.87369e+06 349346 586450. 2029.24 1.26 0.203799 0.184784 25474 144626 -1 2240 23 1832 3080 222963 56326 3.35641 3.35641 -122.708 -3.35641 0 0 744469. 2576.02 0.23 0.12 0.21 -1 -1 0.23 0.0505265 0.0455823 131 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.26 vpr 63.30 MiB -1 -1 0.24 17916 1 0.03 -1 -1 30480 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64816 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 24.7 MiB 2.65 1007 14907 5613 7321 1973 63.3 MiB 0.19 0.00 4.35225 -119.373 -4.35225 4.35225 0.97 0.000982547 0.000913611 0.0821479 0.0762733 34 2591 25 6.87369e+06 279477 618332. 2139.56 1.88 0.293402 0.265072 25762 151098 -1 2173 23 1306 1897 142444 34067 4.09536 4.09536 -125.593 -4.09536 0 0 787024. 2723.27 0.24 0.09 0.21 -1 -1 0.24 0.04331 0.0390132 119 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 7.77 vpr 64.19 MiB -1 -1 0.27 18576 1 0.03 -1 -1 30656 -1 -1 38 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65732 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 25.2 MiB 2.91 1243 16762 4798 10410 1554 64.2 MiB 0.25 0.00 4.91341 -161.214 -4.91341 4.91341 0.98 0.00143839 0.00133959 0.105054 0.0978317 32 3233 25 6.87369e+06 531006 586450. 2029.24 1.27 0.293654 0.267637 25474 144626 -1 2695 20 1813 2940 223787 53132 4.09436 4.09436 -153.561 -4.09436 0 0 744469. 2576.02 0.23 0.12 0.20 -1 -1 0.23 0.0560996 0.0508062 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.67 vpr 63.45 MiB -1 -1 0.23 18136 1 0.03 -1 -1 30236 -1 -1 22 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64972 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 24.5 MiB 1.86 672 7339 1576 4955 808 63.4 MiB 0.09 0.00 3.55895 -103.04 -3.55895 3.55895 0.99 0.000891225 0.000819891 0.0384946 0.0356935 32 2056 31 6.87369e+06 307425 586450. 2029.24 1.17 0.16248 0.146247 25474 144626 -1 1667 19 1082 1850 134227 33324 2.90526 2.90526 -102.994 -2.90526 0 0 744469. 2576.02 0.23 0.08 0.21 -1 -1 0.23 0.0334173 0.0300588 96 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.76 vpr 63.88 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30280 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65408 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.8 MiB 2.79 1158 13127 3358 8192 1577 63.9 MiB 0.19 0.00 4.80948 -147.413 -4.80948 4.80948 0.98 0.00112879 0.00104942 0.0812521 0.0752307 30 3063 24 6.87369e+06 321398 556674. 1926.21 1.23 0.22595 0.205169 25186 138497 -1 2434 21 1354 2030 146017 33061 3.74946 3.74946 -135.712 -3.74946 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0547409 0.0495422 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.77 vpr 63.94 MiB -1 -1 0.26 18388 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65472 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.9 MiB 1.81 1064 11703 2949 7949 805 63.9 MiB 0.16 0.00 3.7235 -118.87 -3.7235 3.7235 0.98 0.0010955 0.00101535 0.0633779 0.0588608 28 2702 24 6.87369e+06 447163 531479. 1839.03 1.25 0.209418 0.189917 24610 126494 -1 2438 24 1581 2780 207025 49039 3.20011 3.20011 -120.794 -3.20011 0 0 648988. 2245.63 0.20 0.11 0.18 -1 -1 0.20 0.0516077 0.0465571 132 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.88 vpr 63.51 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30112 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65036 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.9 MiB 1.04 984 6120 1199 4615 306 63.5 MiB 0.10 0.00 4.14049 -128.002 -4.14049 4.14049 0.97 0.00100579 0.000936008 0.0342364 0.0318029 32 2765 31 6.87369e+06 363320 586450. 2029.24 1.25 0.176262 0.159198 25474 144626 -1 2194 22 1482 2733 209643 50362 3.5931 3.5931 -126.505 -3.5931 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0434607 0.0392161 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.89 vpr 63.91 MiB -1 -1 0.26 18360 1 0.03 -1 -1 30564 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65440 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 24.9 MiB 3.03 1135 13883 3973 8209 1701 63.9 MiB 0.20 0.00 4.95345 -149.04 -4.95345 4.95345 0.98 0.00114002 0.00106038 0.0864352 0.0803908 34 2657 22 6.87369e+06 307425 618332. 2139.56 2.02 0.326771 0.295872 25762 151098 -1 2331 19 1312 1735 121862 29443 3.8404 3.8404 -140.449 -3.8404 0 0 787024. 2723.27 0.24 0.09 0.21 -1 -1 0.24 0.0429452 0.0388193 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.60 vpr 63.94 MiB -1 -1 0.25 18384 1 0.03 -1 -1 30400 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65476 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 25.0 MiB 2.69 887 17835 5720 8884 3231 63.9 MiB 0.22 0.00 3.78934 -120.114 -3.78934 3.78934 0.98 0.001161 0.00107983 0.0986026 0.0917334 34 2867 26 6.87369e+06 447163 618332. 2139.56 2.02 0.300191 0.27246 25762 151098 -1 2049 20 1438 2528 170585 44549 3.46451 3.46451 -120.481 -3.46451 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0456092 0.041259 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 8.81 vpr 64.09 MiB -1 -1 0.26 18332 1 0.03 -1 -1 30396 -1 -1 35 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65624 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 25.0 MiB 2.77 937 16971 4971 8753 3247 64.1 MiB 0.23 0.00 4.12873 -132.442 -4.12873 4.12873 0.98 0.0012213 0.00113579 0.0935949 0.0869917 34 2822 31 6.87369e+06 489084 618332. 2139.56 2.14 0.368864 0.334426 25762 151098 -1 2141 22 1658 2710 193601 47728 3.27211 3.27211 -121.307 -3.27211 0 0 787024. 2723.27 0.23 0.11 0.21 -1 -1 0.23 0.0516596 0.0467116 144 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.77 vpr 63.90 MiB -1 -1 0.23 18112 1 0.03 -1 -1 30476 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65432 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 25.0 MiB 0.91 950 11863 2938 8144 781 63.9 MiB 0.15 0.00 4.28779 -126.336 -4.28779 4.28779 0.98 0.00102699 0.000954921 0.0574956 0.0534045 32 2377 21 6.87369e+06 461137 586450. 2029.24 1.15 0.185613 0.168287 25474 144626 -1 2092 22 1381 2479 177487 42646 3.7341 3.7341 -124.957 -3.7341 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0438973 0.0395952 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.23 vpr 63.84 MiB -1 -1 0.24 18324 1 0.04 -1 -1 30352 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65372 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.9 MiB 2.61 982 14072 3725 8207 2140 63.8 MiB 0.20 0.00 4.76758 -137.763 -4.76758 4.76758 0.98 0.00107304 0.000993059 0.0830063 0.0772293 34 2692 21 6.87369e+06 307425 618332. 2139.56 1.88 0.303521 0.274833 25762 151098 -1 2171 21 1661 2446 164247 39626 3.81076 3.81076 -126.745 -3.81076 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.04419 0.0399767 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 11.02 vpr 64.00 MiB -1 -1 0.25 18408 1 0.03 -1 -1 30292 -1 -1 22 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65540 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 25.0 MiB 2.65 1107 16267 4807 9259 2201 64.0 MiB 0.24 0.00 4.75448 -144.408 -4.75448 4.75448 0.97 0.00118223 0.00109911 0.106573 0.0990816 36 2781 20 6.87369e+06 307425 648988. 2245.63 4.52 0.471563 0.426281 26050 158493 -1 2345 19 1491 2488 182346 42744 4.14936 4.14936 -143.008 -4.14936 0 0 828058. 2865.25 0.25 0.10 0.22 -1 -1 0.25 0.0447264 0.0404831 141 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 8.45 vpr 63.87 MiB -1 -1 0.26 18276 1 0.03 -1 -1 30408 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65404 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 24.9 MiB 2.61 1063 9385 2579 6271 535 63.9 MiB 0.15 0.00 4.4085 -135.318 -4.4085 4.4085 0.98 0.00121671 0.00113013 0.0650368 0.0604934 34 3044 29 6.87369e+06 293451 618332. 2139.56 2.07 0.343073 0.310172 25762 151098 -1 2558 21 1725 3114 244827 57810 3.8247 3.8247 -137.486 -3.8247 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0497788 0.0450178 135 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 6.01 vpr 63.24 MiB -1 -1 0.23 17916 1 0.03 -1 -1 30600 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64760 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 24.6 MiB 0.90 618 7457 1687 5261 509 63.2 MiB 0.09 0.00 3.47695 -100.633 -3.47695 3.47695 0.98 0.000862593 0.000801168 0.0362303 0.0336072 28 2100 31 6.87369e+06 307425 531479. 1839.03 1.55 0.157411 0.141154 24610 126494 -1 1767 22 1169 1823 153554 43158 3.16786 3.16786 -108.329 -3.16786 0 0 648988. 2245.63 0.20 0.09 0.18 -1 -1 0.20 0.0367019 0.0329025 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.64 vpr 63.95 MiB -1 -1 0.25 18324 1 0.03 -1 -1 30228 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65480 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 25.0 MiB 1.99 945 13432 4185 7036 2211 63.9 MiB 0.18 0.00 3.78256 -132.968 -3.78256 3.78256 0.98 0.00108041 0.00100387 0.0849368 0.0789498 34 2605 23 6.87369e+06 251529 618332. 2139.56 1.89 0.312899 0.282916 25762 151098 -1 2269 21 1700 2435 205356 48357 3.7124 3.7124 -139.338 -3.7124 0 0 787024. 2723.27 0.24 0.10 0.21 -1 -1 0.24 0.0444729 0.0401399 124 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 11.48 vpr 64.06 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30412 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65596 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 25.1 MiB 3.03 1267 11983 3302 6304 2377 64.1 MiB 0.21 0.00 5.48208 -158.647 -5.48208 5.48208 0.98 0.00126701 0.00117948 0.0814205 0.0758 36 3283 24 6.87369e+06 335372 648988. 2245.63 4.60 0.477165 0.431857 26050 158493 -1 2688 21 2011 3155 209821 52973 4.7071 4.7071 -158.26 -4.7071 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.0527752 0.0479266 166 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.64 vpr 63.96 MiB -1 -1 0.23 18444 1 0.03 -1 -1 30424 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65492 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 25.0 MiB 2.75 1044 14048 3802 8919 1327 64.0 MiB 0.18 0.00 4.31147 -138.674 -4.31147 4.31147 0.98 0.0011322 0.00105381 0.073926 0.0687666 28 2437 22 6.87369e+06 475111 531479. 1839.03 1.14 0.216408 0.19685 24610 126494 -1 2275 19 1448 2374 161420 38486 2.98996 2.98996 -127.249 -2.98996 0 0 648988. 2245.63 0.20 0.10 0.18 -1 -1 0.20 0.0426534 0.0385855 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.96 vpr 63.41 MiB -1 -1 0.24 18020 1 0.03 -1 -1 30384 -1 -1 25 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64932 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 24.7 MiB 0.75 638 14295 3167 9759 1369 63.4 MiB 0.15 0.00 3.573 -107.747 -3.573 3.573 0.98 0.000939593 0.000864973 0.0717029 0.0665261 28 2101 40 6.87369e+06 349346 531479. 1839.03 1.60 0.216027 0.195333 24610 126494 -1 1641 23 1316 2053 144862 37538 3.09756 3.09756 -110.85 -3.09756 0 0 648988. 2245.63 0.20 0.09 0.18 -1 -1 0.20 0.0409991 0.0368291 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 11.74 vpr 64.29 MiB -1 -1 0.28 18660 1 0.03 -1 -1 30452 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65832 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 25.4 MiB 5.16 1345 13553 3739 8295 1519 64.3 MiB 0.23 0.00 5.88501 -174.993 -5.88501 5.88501 0.98 0.00137154 0.00127701 0.0978419 0.0910865 34 3603 43 6.87369e+06 349346 618332. 2139.56 2.64 0.370609 0.336633 25762 151098 -1 2889 24 2364 3625 321497 73517 4.8891 4.8891 -167.978 -4.8891 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0637775 0.0577801 171 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 7.67 vpr 63.89 MiB -1 -1 0.23 18284 1 0.03 -1 -1 30452 -1 -1 35 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65424 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.8 MiB 2.82 991 19023 5843 10714 2466 63.9 MiB 0.23 0.00 4.60102 -140.95 -4.60102 4.60102 0.98 0.00113306 0.00105561 0.0970882 0.0902002 28 2331 20 6.87369e+06 489084 531479. 1839.03 1.14 0.234049 0.213302 24610 126494 -1 2135 21 1541 2534 173957 41826 3.9787 3.9787 -138.328 -3.9787 0 0 648988. 2245.63 0.20 0.10 0.18 -1 -1 0.20 0.0453031 0.0409155 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.12 vpr 63.20 MiB -1 -1 0.22 17764 1 0.02 -1 -1 30468 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64712 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 24.6 MiB 0.83 773 11398 3057 7257 1084 63.2 MiB 0.13 0.00 3.5954 -103.22 -3.5954 3.5954 0.98 0.000846915 0.00078821 0.0504214 0.0468568 34 1862 26 6.87369e+06 335372 618332. 2139.56 1.67 0.227103 0.203986 25762 151098 -1 1573 21 976 1726 108484 27186 2.71066 2.71066 -98.8932 -2.71066 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0338794 0.0304015 94 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.95 vpr 64.26 MiB -1 -1 0.25 18236 1 0.03 -1 -1 30416 -1 -1 37 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65804 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 25.3 MiB 2.04 1100 15611 4394 9181 2036 64.3 MiB 0.20 0.00 5.24422 -137.452 -5.24422 5.24422 0.98 0.0011586 0.00107714 0.0799336 0.0742691 30 2478 22 6.87369e+06 517032 556674. 1926.21 1.16 0.225923 0.205603 25186 138497 -1 2105 19 1071 2252 123909 30059 4.05235 4.05235 -130.323 -4.05235 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0503587 0.0459389 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.80 vpr 63.19 MiB -1 -1 0.22 17728 1 0.03 -1 -1 30256 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64704 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 24.5 MiB 1.08 806 14303 4874 7080 2349 63.2 MiB 0.16 0.00 3.43775 -108.88 -3.43775 3.43775 0.98 0.000867966 0.00080692 0.0712873 0.0662252 30 1946 20 6.87369e+06 265503 556674. 1926.21 1.10 0.178427 0.16179 25186 138497 -1 1700 19 1091 1943 116310 27585 2.75466 2.75466 -108.368 -2.75466 0 0 706193. 2443.58 0.22 0.07 0.19 -1 -1 0.22 0.031914 0.0286577 98 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.02 vpr 63.45 MiB -1 -1 0.24 18180 1 0.03 -1 -1 30480 -1 -1 34 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64976 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 24.7 MiB 2.20 844 16959 4603 10486 1870 63.5 MiB 0.19 0.00 3.87934 -115.346 -3.87934 3.87934 0.98 0.000942319 0.000866166 0.0752888 0.0697205 28 1979 19 6.87369e+06 475111 531479. 1839.03 1.06 0.185456 0.168109 24610 126494 -1 1967 21 1214 2236 153273 36755 3.00226 3.00226 -113.38 -3.00226 0 0 648988. 2245.63 0.20 0.09 0.18 -1 -1 0.20 0.0384524 0.0345482 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.71 vpr 63.81 MiB -1 -1 0.27 18276 1 0.03 -1 -1 30484 -1 -1 24 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65344 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 24.7 MiB 3.91 1009 14221 4548 7033 2640 63.8 MiB 0.20 0.00 4.12353 -122.981 -4.12353 4.12353 0.98 0.00113147 0.00105293 0.0893941 0.0831445 34 2742 28 6.87369e+06 335372 618332. 2139.56 1.95 0.333694 0.301915 25762 151098 -1 2247 20 1807 2742 195580 47649 3.27591 3.27591 -116.779 -3.27591 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0447038 0.0404153 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.97 vpr 63.98 MiB -1 -1 0.25 18292 1 0.03 -1 -1 30424 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65520 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 25.0 MiB 2.20 979 14964 4132 9262 1570 64.0 MiB 0.20 0.00 4.41935 -144.511 -4.41935 4.41935 0.99 0.00115041 0.00106888 0.0888947 0.0826334 34 2206 23 6.87369e+06 363320 618332. 2139.56 1.79 0.332493 0.301063 25762 151098 -1 1881 20 1342 2014 130943 31966 3.85366 3.85366 -137.759 -3.85366 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0454153 0.0410918 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.23 vpr 63.93 MiB -1 -1 0.24 18504 1 0.03 -1 -1 30508 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65468 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 25.0 MiB 2.23 1060 12943 3369 8335 1239 63.9 MiB 0.18 0.00 4.82683 -144.882 -4.82683 4.82683 0.98 0.00114426 0.00106001 0.0754188 0.0701366 32 2820 33 6.87369e+06 377294 586450. 2029.24 1.26 0.24006 0.217856 25474 144626 -1 2387 24 1658 2923 243820 56134 4.02506 4.02506 -141.834 -4.02506 0 0 744469. 2576.02 0.25 0.12 0.21 -1 -1 0.25 0.0523464 0.0472149 133 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.90 vpr 63.62 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30244 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65148 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 24.9 MiB 3.53 898 11233 2898 7220 1115 63.6 MiB 0.15 0.00 4.78272 -135.094 -4.78272 4.78272 0.98 0.000923277 0.000858247 0.0639277 0.0594187 34 2107 25 6.87369e+06 209608 618332. 2139.56 1.69 0.261917 0.235694 25762 151098 -1 1903 20 963 1304 96742 23139 3.2172 3.2172 -118.826 -3.2172 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0407507 0.0367542 103 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.14 vpr 63.81 MiB -1 -1 0.26 18380 1 0.03 -1 -1 30588 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65340 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 24.9 MiB 2.51 852 9712 2603 6178 931 63.8 MiB 0.15 0.00 3.7214 -119.25 -3.7214 3.7214 0.98 0.00102248 0.000950334 0.0632637 0.0588145 34 2337 23 6.87369e+06 237555 618332. 2139.56 1.83 0.277359 0.249856 25762 151098 -1 1988 25 1515 2269 175472 42891 3.4288 3.4288 -122.85 -3.4288 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0484137 0.0435486 114 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.04 vpr 63.89 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30488 -1 -1 34 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65428 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 24.9 MiB 2.20 924 12798 3409 8384 1005 63.9 MiB 0.17 0.00 3.48905 -102.127 -3.48905 3.48905 0.98 0.00106242 0.000988308 0.0648004 0.0601713 28 2306 22 6.87369e+06 475111 531479. 1839.03 1.11 0.199038 0.180463 24610 126494 -1 2019 20 1167 2295 149812 36022 3.04456 3.04456 -103.178 -3.04456 0 0 648988. 2245.63 0.21 0.09 0.18 -1 -1 0.21 0.0425169 0.0383679 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.69 vpr 63.33 MiB -1 -1 0.24 18088 1 0.03 -1 -1 30524 -1 -1 35 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64852 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 24.5 MiB 1.61 881 17159 5393 9230 2536 63.3 MiB 0.19 0.00 4.16979 -108.643 -4.16979 4.16979 0.98 0.000934899 0.000870052 0.0770999 0.0716151 26 2241 25 6.87369e+06 489084 503264. 1741.40 1.34 0.20016 0.181561 24322 120374 -1 1970 28 1435 2651 213673 48858 4 4 -113.628 -4 0 0 618332. 2139.56 0.19 0.11 0.17 -1 -1 0.19 0.0490259 0.0440032 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 9.23 vpr 63.79 MiB -1 -1 0.25 18160 1 0.03 -1 -1 30152 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65324 30 32 317 269 1 156 79 17 17 289 -1 unnamed_device 24.8 MiB 2.81 809 13092 4770 6917 1405 63.8 MiB 0.18 0.00 3.85608 -118.614 -3.85608 3.85608 0.98 0.00101119 0.000939257 0.0818096 0.0756952 30 2128 24 6.87369e+06 237555 556674. 1926.21 2.89 0.34136 0.307375 25186 138497 -1 1687 20 1252 2193 125757 30796 2.84866 2.84866 -112.644 -2.84866 0 0 706193. 2443.58 0.20 0.04 0.10 -1 -1 0.20 0.0172159 0.0153728 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.62 vpr 63.77 MiB -1 -1 0.25 18360 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65296 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 25.1 MiB 2.84 1036 10756 3215 6482 1059 63.8 MiB 0.16 0.00 3.6884 -127.691 -3.6884 3.6884 0.98 0.00106809 0.000992682 0.0682851 0.0634535 34 2733 40 6.87369e+06 237555 618332. 2139.56 1.97 0.32795 0.296079 25762 151098 -1 2311 19 1511 2263 176462 41688 3.23591 3.23591 -131.17 -3.23591 0 0 787024. 2723.27 0.24 0.09 0.21 -1 -1 0.24 0.0402158 0.0362913 122 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 9.77 vpr 63.52 MiB -1 -1 0.24 17816 1 0.03 -1 -1 30564 -1 -1 31 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65048 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.9 MiB 0.99 1012 10744 2561 7474 709 63.5 MiB 0.15 0.00 4.55512 -132.128 -4.55512 4.55512 0.98 0.0010199 0.000949901 0.0550233 0.0510363 26 2946 36 6.87369e+06 433189 503264. 1741.40 5.11 0.391156 0.351841 24322 120374 -1 2445 21 1488 2658 247750 56653 4.2213 4.2213 -135.717 -4.2213 0 0 618332. 2139.56 0.19 0.11 0.17 -1 -1 0.19 0.041718 0.0376738 129 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 10.13 vpr 63.91 MiB -1 -1 0.24 18428 1 0.03 -1 -1 30584 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65444 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.9 MiB 3.43 991 16023 4565 8930 2528 63.9 MiB 0.24 0.00 4.82048 -149.465 -4.82048 4.82048 0.98 0.00116256 0.00107172 0.0996729 0.0925518 34 3514 24 6.87369e+06 321398 618332. 2139.56 2.83 0.345573 0.313118 25762 151098 -1 2553 21 2058 3094 237306 59266 4.04876 4.04876 -146.569 -4.04876 0 0 787024. 2723.27 0.23 0.12 0.22 -1 -1 0.23 0.0474459 0.0429558 147 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.86 vpr 64.06 MiB -1 -1 0.26 18408 1 0.03 -1 -1 30348 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65600 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 25.2 MiB 3.55 978 12164 2681 7945 1538 64.1 MiB 0.15 0.00 5.314 -155.075 -5.314 5.314 0.98 0.00122723 0.00114011 0.0675682 0.0627671 30 2972 38 6.87369e+06 503058 556674. 1926.21 1.56 0.254379 0.230576 25186 138497 -1 2021 19 1260 2281 121464 32051 3.89575 3.89575 -141.443 -3.89575 0 0 706193. 2443.58 0.22 0.09 0.20 -1 -1 0.22 0.045977 0.0416483 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 10.30 vpr 64.02 MiB -1 -1 0.29 18260 1 0.03 -1 -1 30540 -1 -1 41 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65556 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 25.1 MiB 2.79 1071 14431 4037 9367 1027 64.0 MiB 0.20 0.00 4.54908 -143.401 -4.54908 4.54908 0.98 0.00123073 0.00114416 0.0753244 0.0699399 28 2949 28 6.87369e+06 572927 531479. 1839.03 3.69 0.391151 0.352892 24610 126494 -1 2636 24 1954 3578 297348 70454 3.9237 3.9237 -145.296 -3.9237 0 0 648988. 2245.63 0.20 0.14 0.18 -1 -1 0.20 0.0561972 0.0507824 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.91 vpr 63.40 MiB -1 -1 0.24 18020 1 0.03 -1 -1 30240 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64920 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 24.7 MiB 2.43 839 13261 4339 6686 2236 63.4 MiB 0.16 0.00 3.89188 -120.186 -3.89188 3.89188 0.98 0.000920203 0.000855197 0.073715 0.068512 34 2052 24 6.87369e+06 237555 618332. 2139.56 1.77 0.271102 0.244664 25762 151098 -1 1696 18 1004 1762 112972 28122 2.98326 2.98326 -110.816 -2.98326 0 0 787024. 2723.27 0.24 0.07 0.21 -1 -1 0.24 0.0332536 0.0299664 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.34 vpr 64.03 MiB -1 -1 0.26 18332 1 0.03 -1 -1 30640 -1 -1 22 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65568 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 25.1 MiB 3.52 1044 13260 3550 8119 1591 64.0 MiB 0.21 0.00 4.61482 -143.823 -4.61482 4.61482 0.98 0.00119618 0.00111261 0.0895467 0.0833136 34 2558 26 6.87369e+06 307425 618332. 2139.56 1.97 0.347754 0.315248 25762 151098 -1 2137 20 1579 2509 190850 43590 3.7461 3.7461 -138.423 -3.7461 0 0 787024. 2723.27 0.23 0.11 0.22 -1 -1 0.23 0.0470108 0.0426171 136 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.36 vpr 63.97 MiB -1 -1 0.25 18420 1 0.03 -1 -1 30400 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65508 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.0 MiB 2.44 1037 9111 2097 6458 556 64.0 MiB 0.14 0.00 5.22106 -152.651 -5.22106 5.22106 1.00 0.00123303 0.00115543 0.0572858 0.0532185 34 2883 26 6.87369e+06 321398 618332. 2139.56 2.05 0.302882 0.273601 25762 151098 -1 2335 24 1757 2903 226436 53360 4.11306 4.11306 -141.533 -4.11306 0 0 787024. 2723.27 0.25 0.12 0.22 -1 -1 0.25 0.0514362 0.046537 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 8.92 vpr 63.82 MiB -1 -1 0.28 18264 1 0.03 -1 -1 30216 -1 -1 28 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65348 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 24.7 MiB 2.91 1053 16207 5040 8570 2597 63.8 MiB 0.22 0.00 5.4124 -149.797 -5.4124 5.4124 0.99 0.00110833 0.00103043 0.0915223 0.0851385 34 2740 26 6.87369e+06 391268 618332. 2139.56 2.06 0.332292 0.300644 25762 151098 -1 2219 22 1730 2807 194095 47650 4.7102 4.7102 -146.491 -4.7102 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0474875 0.0428847 141 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 11.41 vpr 64.05 MiB -1 -1 0.26 18460 1 0.03 -1 -1 30180 -1 -1 31 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65588 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 25.0 MiB 3.11 925 12903 3392 7693 1818 64.1 MiB 0.19 0.00 4.69758 -137.96 -4.69758 4.69758 0.98 0.00118043 0.00109732 0.0756862 0.0702972 26 3046 48 6.87369e+06 433189 503264. 1741.40 4.56 0.442886 0.39901 24322 120374 -1 2476 23 1568 2448 228756 58177 3.96276 3.96276 -142.266 -3.96276 0 0 618332. 2139.56 0.19 0.12 0.17 -1 -1 0.19 0.0522259 0.0471254 136 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.21 vpr 63.96 MiB -1 -1 0.25 18164 1 0.03 -1 -1 30432 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65492 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 25.0 MiB 2.38 1052 9943 2760 6470 713 64.0 MiB 0.17 0.00 4.73658 -142.26 -4.73658 4.73658 1.00 0.00116814 0.00108689 0.0653507 0.060807 34 2753 21 6.87369e+06 293451 618332. 2139.56 1.97 0.309912 0.280055 25762 151098 -1 2441 25 1884 3343 245715 58101 4.20436 4.20436 -149.145 -4.20436 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0560011 0.0505495 132 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 7.29 vpr 63.92 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30500 -1 -1 29 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65456 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 25.0 MiB 2.34 985 14361 3761 8676 1924 63.9 MiB 0.20 0.00 4.09163 -124.793 -4.09163 4.09163 0.98 0.00117195 0.00108933 0.0869252 0.0808238 30 2163 22 6.87369e+06 405241 556674. 1926.21 1.15 0.235351 0.214137 25186 138497 -1 1739 20 1103 1805 98943 24197 3.15461 3.15461 -117.364 -3.15461 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0462473 0.041816 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.45 vpr 63.36 MiB -1 -1 0.22 17860 1 0.03 -1 -1 30468 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64884 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 24.7 MiB 1.16 780 9356 2513 5902 941 63.4 MiB 0.12 0.00 3.99928 -120.309 -3.99928 3.99928 0.98 0.000878211 0.000817708 0.0485333 0.0451463 34 1860 22 6.87369e+06 237555 618332. 2139.56 1.64 0.22875 0.20561 25762 151098 -1 1586 19 800 1185 80623 19509 2.86266 2.86266 -107.945 -2.86266 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0330473 0.0297823 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.38 vpr 64.11 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30404 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65652 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 25.2 MiB 4.25 1081 10898 2607 7262 1029 64.1 MiB 0.16 0.00 4.62608 -141.152 -4.62608 4.62608 0.98 0.00119586 0.00111097 0.0608228 0.0563893 28 2722 26 6.87369e+06 475111 531479. 1839.03 1.34 0.218854 0.198381 24610 126494 -1 2370 22 1694 2839 203045 47674 3.9314 3.9314 -140.594 -3.9314 0 0 648988. 2245.63 0.20 0.12 0.19 -1 -1 0.20 0.0510768 0.046155 137 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 9.90 vpr 64.03 MiB -1 -1 0.26 18248 1 0.03 -1 -1 30408 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65564 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 24.9 MiB 4.13 999 9013 2093 6314 606 64.0 MiB 0.16 0.00 4.56982 -152.894 -4.56982 4.56982 0.98 0.00125519 0.0011676 0.0640767 0.0596306 34 2834 22 6.87369e+06 293451 618332. 2139.56 2.00 0.328279 0.29703 25762 151098 -1 2354 20 1869 3075 213243 51388 4.0157 4.0157 -154.813 -4.0157 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0496947 0.045036 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.13 vpr 63.40 MiB -1 -1 0.23 17920 1 0.03 -1 -1 30416 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64924 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 24.7 MiB 2.71 750 8508 2024 5759 725 63.4 MiB 0.12 0.00 4.48134 -122.374 -4.48134 4.48134 0.98 0.000907277 0.000842779 0.0475199 0.0441656 34 2310 34 6.87369e+06 223581 618332. 2139.56 1.77 0.254753 0.228774 25762 151098 -1 1704 21 1066 1371 88331 23924 3.4708 3.4708 -117.832 -3.4708 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0375285 0.0337682 106 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.82 vpr 63.28 MiB -1 -1 0.23 17748 1 0.03 -1 -1 30648 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64800 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 24.6 MiB 1.09 827 12143 3533 6628 1982 63.3 MiB 0.14 0.00 3.95118 -117.571 -3.95118 3.95118 0.98 0.000862119 0.000801318 0.0604603 0.0561972 30 1996 22 6.87369e+06 279477 556674. 1926.21 1.08 0.169617 0.15364 25186 138497 -1 1718 19 956 1710 97285 22869 2.88196 2.88196 -108.197 -2.88196 0 0 706193. 2443.58 0.22 0.07 0.19 -1 -1 0.22 0.0333053 0.0299986 99 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 9.31 vpr 63.97 MiB -1 -1 0.26 18276 1 0.03 -1 -1 30612 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65508 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.9 MiB 3.20 991 14871 5387 7142 2342 64.0 MiB 0.21 0.00 4.73658 -148.901 -4.73658 4.73658 0.98 0.00117289 0.00108288 0.0928057 0.0858555 34 3324 26 6.87369e+06 321398 618332. 2139.56 2.25 0.343679 0.310851 25762 151098 -1 2473 24 2155 2944 234266 55955 4.31866 4.31866 -148.695 -4.31866 0 0 787024. 2723.27 0.25 0.13 0.22 -1 -1 0.25 0.0537538 0.0485895 145 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 8.88 vpr 64.04 MiB -1 -1 0.25 18272 1 0.03 -1 -1 30468 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65576 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 25.2 MiB 3.01 1154 11923 3090 8152 681 64.0 MiB 0.17 0.00 5.18474 -149.968 -5.18474 5.18474 0.99 0.00114394 0.00106329 0.0701481 0.0652127 34 2852 29 6.87369e+06 377294 618332. 2139.56 2.16 0.324695 0.293277 25762 151098 -1 2248 20 1472 2221 141796 38587 4.52065 4.52065 -150.426 -4.52065 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0447519 0.0404986 142 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 7.17 vpr 64.05 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30276 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65592 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.0 MiB 0.77 1048 20284 6297 10335 3652 64.1 MiB 0.26 0.00 5.33542 -146.763 -5.33542 5.33542 0.99 0.00119748 0.00111601 0.107859 0.10044 34 3208 26 6.87369e+06 503058 618332. 2139.56 2.50 0.367985 0.334592 25762 151098 -1 2453 22 1860 3188 243517 58775 4.74615 4.74615 -146.259 -4.74615 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0512023 0.0464026 157 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.96 vpr 63.86 MiB -1 -1 0.28 18280 1 0.03 -1 -1 30420 -1 -1 34 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65388 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 25.0 MiB 2.11 934 17397 5220 9797 2380 63.9 MiB 0.20 0.00 3.59195 -107.694 -3.59195 3.59195 0.99 0.0010228 0.000950642 0.0839212 0.0779268 30 2091 23 6.87369e+06 475111 556674. 1926.21 1.12 0.214823 0.194993 25186 138497 -1 1717 21 1003 1750 98681 24421 2.91296 2.91296 -102.064 -2.91296 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0420629 0.0378817 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 6.36 vpr 63.56 MiB -1 -1 0.24 18124 1 0.03 -1 -1 30408 -1 -1 21 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65088 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 24.9 MiB 0.97 647 12980 4064 8068 848 63.6 MiB 0.14 0.00 3.48275 -97.807 -3.48275 3.48275 1.02 0.000869391 0.000799348 0.0673691 0.0625353 34 1708 21 6.87369e+06 293451 618332. 2139.56 1.68 0.247882 0.22338 25762 151098 -1 1423 20 1061 1601 113082 26680 2.85796 2.85796 -95.6141 -2.85796 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0338491 0.0304157 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 10.28 vpr 64.12 MiB -1 -1 0.27 18456 1 0.03 -1 -1 30416 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65660 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 25.2 MiB 3.94 1306 7108 1644 4961 503 64.1 MiB 0.13 0.00 4.4536 -142.144 -4.4536 4.4536 1.00 0.00133722 0.00124438 0.0524212 0.0487802 34 3678 23 6.87369e+06 335372 618332. 2139.56 2.45 0.338441 0.305936 25762 151098 -1 3022 22 2111 3472 267688 63614 4.13856 4.13856 -146.77 -4.13856 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0590403 0.0535563 165 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 11.04 vpr 64.33 MiB -1 -1 0.26 18408 1 0.03 -1 -1 30400 -1 -1 22 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65876 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 25.4 MiB 4.93 1071 15151 5059 7758 2334 64.3 MiB 0.21 0.00 5.62787 -168.296 -5.62787 5.62787 0.98 0.00117277 0.0010906 0.0970661 0.0901856 36 2463 23 6.87369e+06 307425 648988. 2245.63 2.22 0.343009 0.310746 26050 158493 -1 2092 24 1739 2696 169275 42062 4.4813 4.4813 -152.257 -4.4813 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0533753 0.0482107 139 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.47 vpr 63.80 MiB -1 -1 0.24 18420 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65328 32 32 331 280 1 185 81 17 17 289 -1 unnamed_device 24.9 MiB 5.01 884 8831 2130 6252 449 63.8 MiB 0.13 0.00 4.48255 -144.515 -4.48255 4.48255 0.98 0.00106347 0.000988782 0.0565707 0.0525914 34 2593 20 6.87369e+06 237555 618332. 2139.56 1.81 0.272698 0.245802 25762 151098 -1 2094 20 1432 2124 153062 37959 3.93806 3.93806 -143.822 -3.93806 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.041508 0.037451 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 6.14 vpr 63.86 MiB -1 -1 0.24 18296 1 0.03 -1 -1 30456 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65396 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 24.9 MiB 1.34 978 12751 2883 8925 943 63.9 MiB 0.17 0.00 4.92341 -136.221 -4.92341 4.92341 1.03 0.00108646 0.00101059 0.066149 0.0613875 32 2724 42 6.87369e+06 461137 586450. 2029.24 0.99 0.133149 0.120326 25474 144626 -1 2204 20 1336 2152 174668 41890 3.7764 3.7764 -129.174 -3.7764 0 0 744469. 2576.02 0.23 0.10 0.23 -1 -1 0.23 0.0430938 0.0389367 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.93 vpr 63.98 MiB -1 -1 0.27 18212 1 0.03 -1 -1 30524 -1 -1 34 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65512 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 25.0 MiB 1.82 994 11641 2686 8324 631 64.0 MiB 0.17 0.00 4.45728 -128.707 -4.45728 4.45728 0.98 0.00123654 0.00115262 0.0684463 0.0638226 26 2854 43 6.87369e+06 475111 503264. 1741.40 1.43 0.265801 0.241663 24322 120374 -1 2333 22 1567 2642 193541 47232 4.20576 4.20576 -135.511 -4.20576 0 0 618332. 2139.56 0.19 0.11 0.17 -1 -1 0.19 0.0514601 0.0465701 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.04 vpr 63.97 MiB -1 -1 0.25 18180 1 0.03 -1 -1 30600 -1 -1 31 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65508 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 25.1 MiB 1.96 790 16473 4651 9095 2727 64.0 MiB 0.21 0.00 3.6935 -103.107 -3.6935 3.6935 0.99 0.00105301 0.000979009 0.0855653 0.0795351 30 2430 27 6.87369e+06 433189 556674. 1926.21 1.31 0.228249 0.207216 25186 138497 -1 1605 19 1148 2081 106284 29272 2.75991 2.75991 -97.4697 -2.75991 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0399106 0.0360349 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 12.40 vpr 63.87 MiB -1 -1 0.25 18484 1 0.03 -1 -1 30384 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65400 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 25.0 MiB 3.91 1285 14639 4463 8795 1381 63.9 MiB 0.22 0.00 4.87673 -155.976 -4.87673 4.87673 0.98 0.00115895 0.00106858 0.0923452 0.0856903 38 2958 23 6.87369e+06 307425 678818. 2348.85 4.57 0.450718 0.407219 26626 170182 -1 2544 23 1764 2882 219041 48419 3.97166 3.97166 -147.163 -3.97166 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0514121 0.0464744 148 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.27 vpr 64.14 MiB -1 -1 0.25 18188 1 0.03 -1 -1 30180 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65676 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 25.1 MiB 3.05 1114 17964 5405 9806 2753 64.1 MiB 0.26 0.00 4.14663 -137.433 -4.14663 4.14663 0.99 0.00125893 0.00117415 0.0992774 0.0923339 28 3017 40 6.87369e+06 503058 531479. 1839.03 1.39 0.292388 0.265698 24610 126494 -1 2431 22 1726 2758 189718 46415 3.86711 3.86711 -143.522 -3.86711 0 0 648988. 2245.63 0.20 0.11 0.18 -1 -1 0.20 0.0520982 0.0471029 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.43 vpr 63.48 MiB -1 -1 0.23 17976 1 0.03 -1 -1 30444 -1 -1 19 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65008 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 24.8 MiB 1.77 708 14184 4108 7835 2241 63.5 MiB 0.15 0.00 3.90218 -115.978 -3.90218 3.90218 0.98 0.00087578 0.000813718 0.0763059 0.0708651 28 1698 24 6.87369e+06 265503 531479. 1839.03 1.05 0.193278 0.17532 24610 126494 -1 1586 18 1174 1694 118420 28552 3.38006 3.38006 -120.196 -3.38006 0 0 648988. 2245.63 0.20 0.08 0.20 -1 -1 0.20 0.0332803 0.0300023 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.48 vpr 63.81 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30516 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65344 32 32 310 266 1 175 81 17 17 289 -1 unnamed_device 25.0 MiB 1.91 963 14081 4182 8130 1769 63.8 MiB 0.18 0.00 3.97822 -122.829 -3.97822 3.97822 0.98 0.00100142 0.000929599 0.0828386 0.0768071 34 2127 22 6.87369e+06 237555 618332. 2139.56 1.79 0.290424 0.261966 25762 151098 -1 1919 23 1384 1960 157500 35506 3.18881 3.18881 -122.093 -3.18881 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0442527 0.039768 112 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.73 vpr 63.98 MiB -1 -1 0.25 18188 1 0.03 -1 -1 30440 -1 -1 39 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65512 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 25.0 MiB 1.47 880 19380 5710 10605 3065 64.0 MiB 0.23 0.00 4.54717 -125.702 -4.54717 4.54717 0.98 0.00110035 0.00101438 0.0912439 0.0845994 28 2475 29 6.87369e+06 544980 531479. 1839.03 1.50 0.240996 0.218933 24610 126494 -1 2053 19 1343 2468 188835 45277 4.066 4.066 -129.168 -4.066 0 0 648988. 2245.63 0.20 0.10 0.18 -1 -1 0.20 0.0408514 0.0369237 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.87 vpr 63.32 MiB -1 -1 0.24 17988 1 0.03 -1 -1 30392 -1 -1 19 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64840 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 24.6 MiB 2.48 859 10916 2514 7778 624 63.3 MiB 0.14 0.00 4.61538 -122.043 -4.61538 4.61538 0.98 0.000901465 0.000838762 0.0587764 0.0546365 34 2069 25 6.87369e+06 265503 618332. 2139.56 1.72 0.248604 0.223551 25762 151098 -1 1733 17 974 1257 79877 20351 3.46886 3.46886 -113.671 -3.46886 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.030951 0.0279237 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.33 vpr 63.46 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30168 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64988 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 24.4 MiB 3.46 890 13092 3761 8015 1316 63.5 MiB 0.17 0.00 3.89598 -125.954 -3.89598 3.89598 1.00 0.000938669 0.000872144 0.0763274 0.0709298 30 2177 25 6.87369e+06 209608 556674. 1926.21 1.15 0.198724 0.180124 25186 138497 -1 1842 15 984 1590 111355 25482 3.01156 3.01156 -118.629 -3.01156 0 0 706193. 2443.58 0.22 0.07 0.19 -1 -1 0.22 0.029356 0.026499 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.45 vpr 63.99 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30476 -1 -1 37 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65524 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 25.0 MiB 2.55 1030 11700 3258 7456 986 64.0 MiB 0.16 0.00 3.94428 -127.758 -3.94428 3.94428 0.98 0.0011863 0.00110287 0.0629793 0.0584578 28 2425 35 6.87369e+06 517032 531479. 1839.03 1.22 0.237767 0.215484 24610 126494 -1 2169 18 1540 2425 162056 39077 3.17456 3.17456 -123.701 -3.17456 0 0 648988. 2245.63 0.20 0.09 0.18 -1 -1 0.20 0.0427453 0.0386992 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.89 vpr 63.25 MiB -1 -1 0.24 18168 1 0.03 -1 -1 30496 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64772 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 24.6 MiB 2.80 763 6616 1499 4719 398 63.3 MiB 0.09 0.00 3.6942 -114.024 -3.6942 3.6942 0.72 0.000894142 0.000830514 0.0367069 0.0341237 34 2164 25 6.87369e+06 237555 618332. 2139.56 1.76 0.22805 0.20473 25762 151098 -1 1687 19 1064 1516 96774 25661 3.25591 3.25591 -114.203 -3.25591 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0341001 0.0306908 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.90 vpr 64.08 MiB -1 -1 0.26 18272 1 0.03 -1 -1 30148 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65620 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 25.1 MiB 2.71 991 15431 4685 8411 2335 64.1 MiB 0.20 0.00 3.75634 -117.047 -3.75634 3.75634 1.00 0.00112347 0.00104358 0.0847352 0.0787902 28 2532 23 6.87369e+06 433189 531479. 1839.03 1.39 0.232492 0.211409 24610 126494 -1 2271 19 1199 1965 148581 35067 3.15881 3.15881 -115.795 -3.15881 0 0 648988. 2245.63 0.20 0.09 0.18 -1 -1 0.20 0.0423079 0.038255 129 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 7.97 vpr 64.18 MiB -1 -1 0.27 18284 1 0.03 -1 -1 30388 -1 -1 32 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65724 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 25.2 MiB 2.98 969 16511 5526 8195 2790 64.2 MiB 0.21 0.00 3.7606 -125.402 -3.7606 3.7606 0.98 0.00122332 0.00113675 0.0967143 0.0898358 30 2143 24 6.87369e+06 447163 556674. 1926.21 1.18 0.255434 0.232514 25186 138497 -1 1760 16 1273 1903 99743 25801 2.95601 2.95601 -121.277 -2.95601 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0403335 0.0365708 137 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.43 vpr 63.36 MiB -1 -1 0.23 18360 1 0.03 -1 -1 30528 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64880 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 24.6 MiB 2.08 763 5412 1083 3998 331 63.4 MiB 0.09 0.00 3.46595 -107.951 -3.46595 3.46595 0.98 0.000975959 0.000906572 0.0336319 0.0312534 34 2084 20 6.87369e+06 223581 618332. 2139.56 1.70 0.233442 0.209513 25762 151098 -1 1787 19 1081 1729 123980 30764 2.99946 2.99946 -111.955 -2.99946 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0369481 0.0332587 99 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.51 vpr 63.42 MiB -1 -1 0.24 18004 1 0.03 -1 -1 30496 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64940 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 24.6 MiB 1.96 878 7202 1691 5055 456 63.4 MiB 0.11 0.00 4.13079 -127.98 -4.13079 4.13079 0.98 0.000971467 0.000903543 0.0416076 0.0386846 34 2474 37 6.87369e+06 251529 618332. 2139.56 1.86 0.26686 0.239662 25762 151098 -1 2097 23 1480 2190 178490 42946 3.36811 3.36811 -125.003 -3.36811 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0427913 0.0385287 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.64 vpr 63.97 MiB -1 -1 0.24 18172 1 0.03 -1 -1 30304 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65504 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 25.0 MiB 3.21 1100 9914 2382 6266 1266 64.0 MiB 0.14 0.00 4.82651 -140.217 -4.82651 4.82651 0.97 0.00105953 0.000985591 0.0584506 0.0543781 34 2684 25 6.87369e+06 307425 618332. 2139.56 1.71 0.230906 0.208134 25762 151098 -1 2279 20 1594 2218 150332 36364 3.90776 3.90776 -136.04 -3.90776 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0423781 0.0382886 132 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.30 vpr 63.82 MiB -1 -1 0.26 18240 1 0.03 -1 -1 30244 -1 -1 29 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65356 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.9 MiB 2.43 896 9336 2254 6420 662 63.8 MiB 0.13 0.00 4.11363 -114.181 -4.11363 4.11363 0.99 0.00105023 0.00097719 0.0515428 0.0479414 32 2312 34 6.87369e+06 405241 586450. 2029.24 1.18 0.205319 0.185804 25474 144626 -1 1853 20 1022 1788 118597 29995 3.34191 3.34191 -112.117 -3.34191 0 0 744469. 2576.02 0.23 0.08 0.21 -1 -1 0.23 0.0414265 0.0373349 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.58 vpr 64.23 MiB -1 -1 0.26 18300 1 0.03 -1 -1 30648 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65776 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 25.2 MiB 3.48 1101 15395 4526 8609 2260 64.2 MiB 0.24 0.00 5.22906 -166.389 -5.22906 5.22906 1.01 0.00124589 0.00115942 0.105129 0.0978506 34 2923 24 6.87369e+06 307425 618332. 2139.56 2.10 0.370771 0.336474 25762 151098 -1 2354 20 1726 2630 208387 48089 4.16161 4.16161 -154.889 -4.16161 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0487721 0.0441852 151 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.68 vpr 63.12 MiB -1 -1 0.22 17920 1 0.02 -1 -1 30196 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64640 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 24.5 MiB 1.10 761 7992 2192 5273 527 63.1 MiB 0.10 0.00 3.42155 -104.71 -3.42155 3.42155 0.98 0.00081635 0.000759238 0.0401201 0.037264 28 1980 23 6.87369e+06 237555 531479. 1839.03 1.03 0.144498 0.130361 24610 126494 -1 1750 19 952 1502 108583 26088 2.79596 2.79596 -105.443 -2.79596 0 0 648988. 2245.63 0.20 0.07 0.18 -1 -1 0.20 0.0312817 0.0281369 92 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.84 vpr 64.18 MiB -1 -1 0.26 18360 1 0.03 -1 -1 30404 -1 -1 35 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65720 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 25.2 MiB 1.88 1080 17883 4895 11214 1774 64.2 MiB 0.24 0.00 4.44135 -148.747 -4.44135 4.44135 0.98 0.00127801 0.00118778 0.103644 0.0963365 34 2558 23 6.87369e+06 489084 618332. 2139.56 1.95 0.37624 0.341195 25762 151098 -1 2250 23 1724 2397 170590 40576 3.89566 3.89566 -145.267 -3.89566 0 0 787024. 2723.27 0.29 0.11 0.22 -1 -1 0.29 0.0565894 0.0511031 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.57 vpr 63.76 MiB -1 -1 0.25 18424 1 0.03 -1 -1 30224 -1 -1 16 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65288 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.9 MiB 3.95 879 12808 3950 7474 1384 63.8 MiB 0.18 0.00 3.59615 -129.411 -3.59615 3.59615 0.99 0.00115981 0.00107706 0.0889608 0.0826279 34 2139 19 6.87369e+06 223581 618332. 2139.56 1.81 0.333853 0.301832 25762 151098 -1 1835 19 1549 2202 167278 38235 2.99316 2.99316 -126.062 -2.99316 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0436436 0.0393919 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.64 vpr 63.89 MiB -1 -1 0.26 18240 1 0.03 -1 -1 30548 -1 -1 32 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65420 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 25.0 MiB 2.63 1029 16083 4329 9310 2444 63.9 MiB 0.21 0.00 4.14663 -128.65 -4.14663 4.14663 0.98 0.0011519 0.00107078 0.0875542 0.0813764 32 2488 23 6.87369e+06 447163 586450. 2029.24 1.16 0.234975 0.21381 25474 144626 -1 2074 19 1145 1804 124331 30403 2.99901 2.99901 -115.201 -2.99901 0 0 744469. 2576.02 0.23 0.09 0.21 -1 -1 0.23 0.0436698 0.0394924 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.39 vpr 64.30 MiB -1 -1 0.26 18548 1 0.03 -1 -1 30500 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65840 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 25.2 MiB 4.37 1256 15335 4173 9820 1342 64.3 MiB 0.25 0.00 5.90839 -177.511 -5.90839 5.90839 0.98 0.00131754 0.00122816 0.103889 0.0967478 34 3241 39 6.87369e+06 349346 618332. 2139.56 2.10 0.413456 0.375495 25762 151098 -1 2525 21 1986 3050 214346 53033 5.0197 5.0197 -164.41 -5.0197 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0539513 0.0490194 171 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.87 vpr 63.11 MiB -1 -1 0.23 18028 1 0.04 -1 -1 30284 -1 -1 15 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64620 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 24.6 MiB 1.62 720 11161 3070 6702 1389 63.1 MiB 0.11 0.00 3.01346 -96.0966 -3.01346 3.01346 0.98 0.000756641 0.000701623 0.0538802 0.0499656 34 1677 22 6.87369e+06 209608 618332. 2139.56 1.62 0.211203 0.18938 25762 151098 -1 1484 20 874 1174 88332 21383 2.48107 2.48107 -96.8847 -2.48107 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0299128 0.0267838 81 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.76 vpr 63.31 MiB -1 -1 0.25 18040 1 0.03 -1 -1 30512 -1 -1 19 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64828 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 24.6 MiB 1.05 777 9706 2580 6483 643 63.3 MiB 0.13 0.00 3.91444 -121.772 -3.91444 3.91444 0.98 0.000955202 0.000888327 0.0554385 0.0514899 30 1812 19 6.87369e+06 265503 556674. 1926.21 1.07 0.171431 0.155217 25186 138497 -1 1521 18 837 1317 77561 18747 2.86596 2.86596 -110.311 -2.86596 0 0 706193. 2443.58 0.22 0.07 0.20 -1 -1 0.22 0.0347024 0.0312837 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.28 vpr 63.62 MiB -1 -1 0.23 17912 1 0.03 -1 -1 30260 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65148 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 24.9 MiB 1.28 823 13719 4254 8151 1314 63.6 MiB 0.17 0.00 3.44891 -115.299 -3.44891 3.44891 0.98 0.000989664 0.000919037 0.0730547 0.0677546 32 2389 35 6.87369e+06 321398 586450. 2029.24 1.25 0.217898 0.19717 25474 144626 -1 2008 20 1364 2408 207493 49925 3.24716 3.24716 -121.667 -3.24716 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0390212 0.0351563 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.42 vpr 63.05 MiB -1 -1 0.25 18008 1 0.02 -1 -1 30300 -1 -1 29 25 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64560 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 24.4 MiB 0.77 469 11804 3249 6587 1968 63.0 MiB 0.11 0.00 3.45495 -79.1828 -3.45495 3.45495 0.99 0.000741553 0.000683407 0.0480139 0.0443971 30 1210 22 6.87369e+06 405241 556674. 1926.21 1.03 0.140787 0.126957 25186 138497 -1 976 18 616 1119 60161 15605 2.68866 2.68866 -73.474 -2.68866 0 0 706193. 2443.58 0.22 0.05 0.19 -1 -1 0.22 0.0267923 0.0240652 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.49 vpr 64.09 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30384 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65628 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 25.1 MiB 2.59 967 14724 4258 8138 2328 64.1 MiB 0.21 0.00 4.3826 -128.252 -4.3826 4.3826 0.98 0.00118401 0.00110066 0.0985217 0.0916042 34 2897 22 6.87369e+06 279477 618332. 2139.56 2.05 0.347122 0.314503 25762 151098 -1 2436 22 1656 2873 213743 52432 3.88596 3.88596 -132.417 -3.88596 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0506923 0.0458009 133 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.47 vpr 64.14 MiB -1 -1 0.27 18176 1 0.03 -1 -1 30336 -1 -1 31 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65680 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 25.2 MiB 2.67 1004 17347 4956 10888 1503 64.1 MiB 0.25 0.00 4.17399 -136.544 -4.17399 4.17399 0.98 0.00123569 0.00114831 0.106651 0.0992227 34 2396 21 6.87369e+06 433189 618332. 2139.56 1.84 0.369691 0.335558 25762 151098 -1 2092 21 1826 2850 175152 43841 3.19361 3.19361 -124.854 -3.19361 0 0 787024. 2723.27 0.24 0.11 0.21 -1 -1 0.24 0.0519329 0.0468803 143 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 10.20 vpr 63.76 MiB -1 -1 0.27 18252 1 0.03 -1 -1 30456 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65292 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 24.7 MiB 2.00 1064 11788 3543 6827 1418 63.8 MiB 0.18 0.00 5.46377 -156.517 -5.46377 5.46377 0.99 0.00114556 0.00106569 0.0721777 0.0670918 36 2430 26 6.89349e+06 338252 648988. 2245.63 4.41 0.42555 0.383682 26050 158493 -1 2108 19 1508 2315 133834 34032 4.27005 4.27005 -142.172 -4.27005 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.043613 0.0395148 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.83 vpr 64.06 MiB -1 -1 0.26 18400 1 0.03 -1 -1 30504 -1 -1 26 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65596 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 25.1 MiB 1.88 1124 13738 3850 8296 1592 64.1 MiB 0.20 0.00 4.83304 -147.244 -4.83304 4.83304 0.98 0.00115987 0.00107908 0.0844218 0.0784851 34 2954 22 6.89349e+06 366440 618332. 2139.56 2.04 0.332391 0.300749 25762 151098 -1 2452 22 2104 3117 209610 51768 4.17294 4.17294 -145.279 -4.17294 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0489483 0.044329 158 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 10.31 vpr 63.41 MiB -1 -1 0.24 18256 1 0.03 -1 -1 30400 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64928 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.7 MiB 2.08 986 10315 2668 7087 560 63.4 MiB 0.14 0.00 4.28303 -120.803 -4.28303 4.28303 0.98 0.000997138 0.000927144 0.0579869 0.0538626 36 2426 24 6.89349e+06 295971 648988. 2245.63 4.31 0.376084 0.337953 26050 158493 -1 2044 19 1205 1673 113978 27308 3.7456 3.7456 -119.907 -3.7456 0 0 828058. 2865.25 0.25 0.08 0.22 -1 -1 0.25 0.0379295 0.034232 125 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.30 vpr 63.23 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30376 -1 -1 24 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64744 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1020 7153 1669 4959 525 63.2 MiB 0.11 0.00 4.81208 -129.448 -4.81208 4.81208 0.97 0.00102904 0.000957674 0.0421883 0.0392708 34 2541 23 6.89349e+06 338252 618332. 2139.56 1.84 0.208169 0.187916 25762 151098 -1 2113 22 1445 2437 175064 40113 3.85186 3.85186 -122.006 -3.85186 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0439253 0.0396085 134 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.02 vpr 63.71 MiB -1 -1 0.23 18304 1 0.03 -1 -1 30576 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65240 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 24.8 MiB 1.79 1107 14679 4819 7580 2280 63.7 MiB 0.21 0.00 5.27653 -151.244 -5.27653 5.27653 0.98 0.00112622 0.00104843 0.0885604 0.0823637 36 3285 41 6.89349e+06 324158 648988. 2245.63 2.28 0.308141 0.279178 26050 158493 -1 2660 24 2121 3864 314002 73938 4.31509 4.31509 -150.833 -4.31509 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0508851 0.0459478 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 8.93 vpr 63.88 MiB -1 -1 0.24 18288 1 0.03 -1 -1 30428 -1 -1 33 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65412 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 24.9 MiB 2.47 1135 18523 5440 10042 3041 63.9 MiB 0.26 0.00 3.8789 -124.315 -3.8789 3.8789 0.99 0.00118238 0.00109929 0.10157 0.0943376 36 2848 26 6.89349e+06 465097 648988. 2245.63 2.48 0.357421 0.323685 26050 158493 -1 2427 23 1774 3074 199032 48504 3.52225 3.52225 -124.802 -3.52225 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0521167 0.0470122 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.62 vpr 63.51 MiB -1 -1 0.24 18056 1 0.03 -1 -1 30712 -1 -1 21 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65032 27 32 259 221 1 159 80 17 17 289 -1 unnamed_device 24.9 MiB 1.26 817 10228 2968 5692 1568 63.5 MiB 0.12 0.00 4.18543 -114.153 -4.18543 4.18543 0.98 0.000870567 0.000809288 0.0539228 0.0501417 34 1882 24 6.89349e+06 295971 618332. 2139.56 1.71 0.238501 0.214475 25762 151098 -1 1623 19 1151 1690 121724 29272 3.03971 3.03971 -105.066 -3.03971 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0333839 0.0300655 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 6.76 vpr 63.17 MiB -1 -1 0.23 17628 1 0.03 -1 -1 30228 -1 -1 32 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64684 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 24.5 MiB 0.75 946 10895 2711 7214 970 63.2 MiB 0.13 0.00 3.35428 -101.445 -3.35428 3.35428 0.98 0.00094381 0.000878655 0.0512331 0.0475641 34 2168 22 6.89349e+06 451003 618332. 2139.56 1.75 0.257108 0.2317 25762 151098 -1 1909 19 958 1657 108393 25766 2.49221 2.49221 -95.3192 -2.49221 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.035525 0.0320005 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.61 vpr 63.67 MiB -1 -1 0.25 18324 1 0.03 -1 -1 30224 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65200 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 24.8 MiB 1.95 1055 11652 3009 7126 1517 63.7 MiB 0.17 0.00 3.67955 -123.605 -3.67955 3.67955 0.98 0.00100787 0.000936436 0.0696506 0.0647125 34 2515 20 6.89349e+06 267783 618332. 2139.56 1.85 0.278067 0.250545 25762 151098 -1 2127 22 1526 2131 172181 38892 2.79816 2.79816 -117.218 -2.79816 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0430832 0.0387678 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 7.21 vpr 63.13 MiB -1 -1 0.23 18096 1 0.03 -1 -1 30228 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64644 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 24.3 MiB 1.61 837 7202 1579 5230 393 63.1 MiB 0.12 0.00 4.04458 -129.952 -4.04458 4.04458 1.01 0.000978701 0.000917322 0.0423926 0.0394062 34 2280 23 6.89349e+06 253689 618332. 2139.56 1.83 0.259434 0.233023 25762 151098 -1 1919 20 1356 1808 129272 32356 3.2505 3.2505 -121.726 -3.2505 0 0 787024. 2723.27 0.24 0.09 0.23 -1 -1 0.24 0.0398396 0.0359723 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.86 vpr 63.38 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30444 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64904 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 24.6 MiB 2.05 927 14123 4163 7804 2156 63.4 MiB 0.18 0.00 4.49997 -130.748 -4.49997 4.49997 1.00 0.000973098 0.000903925 0.0801947 0.0745642 34 2297 23 6.89349e+06 295971 618332. 2139.56 1.88 0.285213 0.257262 25762 151098 -1 1964 23 1469 1915 138043 33283 3.70055 3.70055 -127.009 -3.70055 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0434371 0.0390939 124 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.86 vpr 63.23 MiB -1 -1 0.25 18224 1 0.03 -1 -1 30268 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64744 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 24.5 MiB 1.50 952 13206 3625 8328 1253 63.2 MiB 0.16 0.00 3.6917 -113.924 -3.6917 3.6917 0.98 0.000926022 0.000860727 0.0723965 0.0672763 34 2342 22 6.89349e+06 239595 618332. 2139.56 1.70 0.269695 0.243447 25762 151098 -1 1950 17 909 1209 83216 20108 2.93851 2.93851 -112.033 -2.93851 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0318546 0.0286765 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.34 vpr 63.86 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30468 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65396 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.9 MiB 1.98 1112 16791 5058 9343 2390 63.9 MiB 0.24 0.00 4.10168 -134.349 -4.10168 4.10168 0.98 0.00113326 0.00105461 0.102021 0.0949102 36 2639 21 6.89349e+06 324158 648988. 2245.63 2.49 0.337961 0.306633 26050 158493 -1 2354 23 1536 2391 195421 43951 3.07666 3.07666 -121.16 -3.07666 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0507877 0.0458864 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.36 vpr 64.12 MiB -1 -1 0.14 18280 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65664 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 25.2 MiB 2.45 1080 16663 5045 8811 2807 64.1 MiB 0.24 0.00 5.63697 -160.415 -5.63697 5.63697 0.98 0.00115915 0.00107724 0.102246 0.0949938 34 3227 28 6.89349e+06 338252 618332. 2139.56 2.19 0.355782 0.322216 25762 151098 -1 2403 20 1831 2566 179237 44258 4.73599 4.73599 -156.84 -4.73599 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0460626 0.0416947 153 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.80 vpr 63.04 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30224 -1 -1 18 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64548 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 24.4 MiB 1.42 852 11909 3160 6915 1834 63.0 MiB 0.13 0.00 3.19582 -98.8741 -3.19582 3.19582 0.98 0.000845662 0.000785936 0.0615262 0.0571604 34 1976 30 6.89349e+06 253689 618332. 2139.56 1.70 0.248872 0.223585 25762 151098 -1 1774 20 977 1360 91954 22675 2.81796 2.81796 -99.1153 -2.81796 0 0 787024. 2723.27 0.23 0.07 0.22 -1 -1 0.23 0.0333043 0.0299017 102 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 11.23 vpr 63.78 MiB -1 -1 0.25 18196 1 0.03 -1 -1 30428 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65308 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 24.8 MiB 2.67 1298 15493 4676 9050 1767 63.8 MiB 0.23 0.00 4.1661 -138.014 -4.1661 4.1661 0.98 0.00119211 0.00110873 0.0973027 0.0904867 36 3140 27 6.89349e+06 338252 648988. 2245.63 4.59 0.476396 0.430233 26050 158493 -1 2687 21 2028 3221 224290 51901 3.62825 3.62825 -138.193 -3.62825 0 0 828058. 2865.25 0.25 0.12 0.25 -1 -1 0.25 0.0493109 0.0445944 159 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 7.86 vpr 64.07 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65612 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 25.2 MiB 1.96 1059 14450 4622 7260 2568 64.1 MiB 0.20 0.00 4.13204 -133.409 -4.13204 4.13204 0.98 0.0010868 0.0010103 0.0874885 0.0813417 34 2804 30 6.89349e+06 310065 618332. 2139.56 2.13 0.335296 0.303417 25762 151098 -1 2249 17 1308 1912 142342 33115 3.03536 3.03536 -120.821 -3.03536 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0385542 0.0349071 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 10.39 vpr 63.85 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30400 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65380 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 25.0 MiB 2.25 1220 14965 4341 8910 1714 63.8 MiB 0.20 0.00 3.67155 -130.035 -3.67155 3.67155 0.98 0.00103107 0.000958183 0.0856345 0.0795203 36 2459 21 6.89349e+06 295971 648988. 2245.63 4.33 0.398611 0.35893 26050 158493 -1 2218 21 1467 1933 128733 30329 2.90116 2.90116 -120.715 -2.90116 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0424226 0.0382378 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.88 vpr 63.00 MiB -1 -1 0.22 18016 1 0.02 -1 -1 30204 -1 -1 15 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64516 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 24.2 MiB 1.32 773 8390 2474 4676 1240 63.0 MiB 0.09 0.00 2.65863 -91.3953 -2.65863 2.65863 0.98 0.000753708 0.000699387 0.0410964 0.0381529 30 1648 21 6.89349e+06 211408 556674. 1926.21 1.01 0.13354 0.120194 25186 138497 -1 1408 18 657 757 47487 12047 2.07837 2.07837 -90.1499 -2.07837 0 0 706193. 2443.58 0.22 0.05 0.19 -1 -1 0.22 0.0275745 0.0247778 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 9.94 vpr 63.13 MiB -1 -1 0.24 18296 1 0.03 -1 -1 30500 -1 -1 19 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64648 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 24.3 MiB 2.45 980 13254 3823 7828 1603 63.1 MiB 0.17 0.00 4.85214 -146.508 -4.85214 4.85214 0.98 0.000980983 0.000912094 0.0750833 0.0697935 30 2399 43 6.89349e+06 267783 556674. 1926.21 3.78 0.395859 0.35574 25186 138497 -1 1995 20 1057 1680 127157 30305 3.4857 3.4857 -133.356 -3.4857 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0380654 0.0342897 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 7.18 vpr 63.65 MiB -1 -1 0.25 18356 1 0.03 -1 -1 30668 -1 -1 34 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65176 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 24.7 MiB 1.34 1134 18323 5038 11357 1928 63.6 MiB 0.25 0.00 4.77763 -150.944 -4.77763 4.77763 1.02 0.00112978 0.00105035 0.0943347 0.0877934 34 2739 20 6.89349e+06 479191 618332. 2139.56 1.89 0.322261 0.292255 25762 151098 -1 2312 19 1457 2145 169640 40259 4.06744 4.06744 -146.182 -4.06744 0 0 787024. 2723.27 0.25 0.10 0.22 -1 -1 0.25 0.0445105 0.0404154 151 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 7.98 vpr 63.84 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30536 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65368 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 24.9 MiB 1.73 1226 16023 5263 8066 2694 63.8 MiB 0.24 0.00 4.5284 -136.451 -4.5284 4.5284 0.99 0.00119775 0.00111372 0.103695 0.096467 34 3102 40 6.89349e+06 324158 618332. 2139.56 2.32 0.332656 0.301536 25762 151098 -1 2375 19 1662 2579 182741 42876 3.8068 3.8068 -133.07 -3.8068 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0447667 0.0405323 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 6.10 vpr 62.94 MiB -1 -1 0.23 18016 1 0.02 -1 -1 30824 -1 -1 18 26 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64448 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 24.4 MiB 1.27 418 9996 4130 4980 886 62.9 MiB 0.09 0.00 2.70371 -73.8386 -2.70371 2.70371 0.87 0.000710236 0.00066163 0.042417 0.039301 34 1408 23 6.89349e+06 253689 618332. 2139.56 1.66 0.177471 0.1586 25762 151098 -1 1020 17 640 751 52303 14312 2.14035 2.14035 -71.1881 -2.14035 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0225899 0.0202425 75 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.87 vpr 63.16 MiB -1 -1 0.24 17876 1 0.03 -1 -1 30364 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64680 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 24.5 MiB 1.11 1067 12375 3267 7751 1357 63.2 MiB 0.17 0.00 4.54727 -128.116 -4.54727 4.54727 1.03 0.000991156 0.000921888 0.0674552 0.062736 34 2395 30 6.89349e+06 324158 618332. 2139.56 1.97 0.287921 0.260012 25762 151098 -1 2076 19 1220 2261 164679 38498 3.3885 3.3885 -118.043 -3.3885 0 0 787024. 2723.27 0.25 0.09 0.22 -1 -1 0.25 0.0373116 0.0336807 119 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 5.18 vpr 62.78 MiB -1 -1 0.20 17448 1 0.02 -1 -1 30276 -1 -1 12 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64288 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.1 MiB 0.50 403 9836 3145 4361 2330 62.8 MiB 0.10 0.00 2.34152 -71.3945 -2.34152 2.34152 0.98 0.000623072 0.00057637 0.0508381 0.0469606 32 1223 41 6.89349e+06 169126 586450. 2029.24 1.12 0.148516 0.133307 25474 144626 -1 922 18 643 829 57522 16895 1.91441 1.91441 -72.1345 -1.91441 0 0 744469. 2576.02 0.23 0.05 0.21 -1 -1 0.23 0.0227711 0.0203707 65 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 7.12 vpr 63.33 MiB -1 -1 0.24 18036 1 0.03 -1 -1 30212 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64848 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 24.6 MiB 1.61 984 14175 4702 7220 2253 63.3 MiB 0.19 0.00 4.89708 -136.259 -4.89708 4.89708 0.97 0.00101442 0.00094334 0.0811379 0.0754332 34 2477 21 6.89349e+06 281877 618332. 2139.56 1.75 0.293648 0.265928 25762 151098 -1 1997 18 1141 1660 114714 27314 3.94706 3.94706 -125.905 -3.94706 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0367794 0.0332572 125 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.77 vpr 63.21 MiB -1 -1 0.24 17808 1 0.03 -1 -1 30520 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64724 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.3 MiB 0.79 988 16079 4364 9917 1798 63.2 MiB 0.22 0.00 3.39295 -107.482 -3.39295 3.39295 0.99 0.00102793 0.000956298 0.0789526 0.0733692 28 2583 33 6.89349e+06 436909 531479. 1839.03 1.26 0.22755 0.206578 24610 126494 -1 2249 20 1331 2268 154910 39115 2.86811 2.86811 -111.4 -2.86811 0 0 648988. 2245.63 0.20 0.09 0.18 -1 -1 0.20 0.0406998 0.0367931 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.11 vpr 63.90 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65436 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 25.0 MiB 2.38 1111 15639 4885 7776 2978 63.9 MiB 0.22 0.00 4.89143 -136.037 -4.89143 4.89143 0.98 0.001096 0.00101853 0.0920429 0.0855611 36 2817 37 6.89349e+06 324158 648988. 2245.63 1.96 0.292478 0.265095 26050 158493 -1 2367 18 1532 2316 168983 38470 3.76576 3.76576 -129.425 -3.76576 0 0 828058. 2865.25 0.24 0.09 0.14 -1 -1 0.24 0.0399911 0.0361756 142 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.88 vpr 63.27 MiB -1 -1 0.21 18052 1 0.03 -1 -1 30268 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64788 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 24.6 MiB 2.17 990 13381 4491 7116 1774 63.3 MiB 0.18 0.00 3.64535 -123.731 -3.64535 3.64535 0.99 0.000957071 0.000889267 0.0756513 0.0703219 34 2280 39 6.89349e+06 239595 618332. 2139.56 1.90 0.302215 0.272388 25762 151098 -1 1907 22 1274 1917 131530 31719 2.77106 2.77106 -115.157 -2.77106 0 0 787024. 2723.27 0.24 0.09 0.24 -1 -1 0.24 0.0410181 0.0368984 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 9.94 vpr 63.07 MiB -1 -1 0.23 18016 1 0.03 -1 -1 30268 -1 -1 17 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64580 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 24.4 MiB 1.82 909 12754 4731 6611 1412 63.1 MiB 0.15 0.00 4.01762 -117.054 -4.01762 4.01762 0.98 0.000882709 0.00081984 0.068887 0.0639681 38 1934 20 6.89349e+06 239595 678818. 2348.85 4.41 0.367266 0.329475 26626 170182 -1 1721 17 819 1348 98701 22451 3.0712 3.0712 -105.377 -3.0712 0 0 902133. 3121.57 0.26 0.07 0.24 -1 -1 0.26 0.0305322 0.027463 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 9.71 vpr 63.18 MiB -1 -1 0.23 18008 1 0.03 -1 -1 30228 -1 -1 20 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64696 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 24.5 MiB 1.77 829 10744 2823 7309 612 63.2 MiB 0.13 0.00 4.27226 -119.167 -4.27226 4.27226 0.98 0.000875632 0.000813906 0.0568261 0.0528354 36 1946 20 6.89349e+06 281877 648988. 2245.63 4.24 0.311546 0.27946 26050 158493 -1 1705 17 942 1574 107451 25642 3.48295 3.48295 -112.913 -3.48295 0 0 828058. 2865.25 0.25 0.07 0.23 -1 -1 0.25 0.0303971 0.0273852 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.00 vpr 63.13 MiB -1 -1 0.22 17828 1 0.03 -1 -1 30404 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64648 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 24.5 MiB 1.20 714 11106 3926 4953 2227 63.1 MiB 0.14 0.00 3.82748 -115.489 -3.82748 3.82748 1.00 0.000893734 0.000831495 0.0591144 0.054969 30 2362 25 6.89349e+06 239595 556674. 1926.21 1.20 0.176123 0.159366 25186 138497 -1 1772 19 1143 1887 134703 33763 2.85996 2.85996 -112.127 -2.85996 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0337474 0.0303988 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.18 vpr 63.14 MiB -1 -1 0.24 18032 1 0.03 -1 -1 30312 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64660 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 24.5 MiB 1.66 960 14081 4470 7746 1865 63.1 MiB 0.17 0.00 3.58045 -113.742 -3.58045 3.58045 0.98 0.000913414 0.000849255 0.0758445 0.0705144 34 2163 23 6.89349e+06 253689 618332. 2139.56 1.80 0.269391 0.243129 25762 151098 -1 1943 24 1179 1774 135501 32341 2.84231 2.84231 -109.636 -2.84231 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0418813 0.0376201 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.81 vpr 63.40 MiB -1 -1 0.25 18348 1 0.03 -1 -1 30484 -1 -1 22 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64920 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 24.6 MiB 2.26 955 13763 4007 8316 1440 63.4 MiB 0.17 0.00 3.50915 -107.043 -3.50915 3.50915 0.98 0.000949012 0.000882255 0.075086 0.0697908 34 2189 33 6.89349e+06 310065 618332. 2139.56 1.81 0.253032 0.228382 25762 151098 -1 1939 21 1112 1567 116506 27871 2.79316 2.79316 -105.198 -2.79316 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0388426 0.0349233 120 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.50 vpr 63.93 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30708 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65468 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 25.0 MiB 1.52 1344 6623 1379 4726 518 63.9 MiB 0.12 0.00 4.57545 -133.188 -4.57545 4.57545 0.98 0.00122107 0.00112836 0.0438832 0.040834 36 2946 20 6.89349e+06 352346 648988. 2245.63 2.22 0.294207 0.265996 26050 158493 -1 2527 20 1359 2303 163968 38629 3.85326 3.85326 -127.317 -3.85326 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0478527 0.0433837 159 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 8.58 vpr 63.79 MiB -1 -1 0.26 18300 1 0.03 -1 -1 30456 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65320 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 24.7 MiB 2.28 1314 15103 4520 8282 2301 63.8 MiB 0.21 0.00 4.62597 -154.671 -4.62597 4.62597 0.98 0.00123857 0.00115169 0.099283 0.0923033 36 3037 47 6.89349e+06 338252 648988. 2245.63 2.41 0.388964 0.352546 26050 158493 -1 2650 22 2294 3225 244714 57202 3.66405 3.66405 -141.98 -3.66405 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0529038 0.047855 168 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.29 vpr 63.24 MiB -1 -1 0.24 18308 1 0.03 -1 -1 30272 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64756 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 24.6 MiB 1.66 891 12681 4633 6140 1908 63.2 MiB 0.17 0.00 4.00748 -121.286 -4.00748 4.00748 0.98 0.000930708 0.000865166 0.0704 0.0654608 34 2236 25 6.89349e+06 253689 618332. 2139.56 1.96 0.270291 0.24359 25762 151098 -1 1848 20 962 1489 131665 29123 3.03485 3.03485 -112.679 -3.03485 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0366631 0.0329856 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.81 vpr 63.80 MiB -1 -1 0.27 18156 1 0.03 -1 -1 30596 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65336 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 24.9 MiB 2.49 1219 12958 3345 8411 1202 63.8 MiB 0.20 0.00 4.38103 -136.881 -4.38103 4.38103 0.99 0.00117842 0.00109695 0.0812224 0.075482 34 3262 45 6.89349e+06 352346 618332. 2139.56 2.44 0.371208 0.335323 25762 151098 -1 2648 24 1764 2666 203675 47051 4.0763 4.0763 -140.041 -4.0763 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0542488 0.0490116 160 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.57 vpr 64.16 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30360 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65696 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 25.2 MiB 2.75 1259 16858 6134 8135 2589 64.2 MiB 0.25 0.00 5.51507 -165.9 -5.51507 5.51507 0.98 0.00119954 0.00111585 0.106917 0.099444 34 3519 48 6.89349e+06 352346 618332. 2139.56 2.93 0.411149 0.372179 25762 151098 -1 2813 20 2082 3045 280643 61018 4.78958 4.78958 -159.965 -4.78958 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0470905 0.0425897 163 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 8.62 vpr 63.86 MiB -1 -1 0.27 18308 1 0.03 -1 -1 30508 -1 -1 25 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65392 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 24.9 MiB 2.59 1190 15688 5780 7361 2547 63.9 MiB 0.23 0.00 5.54088 -167.719 -5.54088 5.54088 0.98 0.00120898 0.00112367 0.100101 0.0930377 36 2897 21 6.89349e+06 352346 648988. 2245.63 2.14 0.352799 0.319916 26050 158493 -1 2581 23 2002 2869 202324 47540 5.10454 5.10454 -166.941 -5.10454 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.0539802 0.0488424 166 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 10.53 vpr 63.84 MiB -1 -1 0.24 18376 1 0.04 -1 -1 30508 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65372 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 24.9 MiB 2.05 1192 10071 2510 6717 844 63.8 MiB 0.16 0.00 4.12652 -128.326 -4.12652 4.12652 0.98 0.00113158 0.00105262 0.0624392 0.0580343 38 2556 50 6.89349e+06 338252 678818. 2348.85 4.61 0.50784 0.456853 26626 170182 -1 2246 23 1487 2276 148834 34740 3.08746 3.08746 -115.533 -3.08746 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0503426 0.0454538 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 9.78 vpr 63.24 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30544 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64756 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 24.5 MiB 1.60 1042 13992 4713 7020 2259 63.2 MiB 0.18 0.00 4.55135 -122.838 -4.55135 4.55135 0.98 0.000973855 0.000905127 0.0773714 0.0719043 38 2276 21 6.89349e+06 281877 678818. 2348.85 4.37 0.362265 0.325995 26626 170182 -1 1964 18 1028 1468 98562 22691 3.69666 3.69666 -116.767 -3.69666 0 0 902133. 3121.57 0.26 0.07 0.27 -1 -1 0.26 0.0362293 0.0327373 120 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 11.14 vpr 64.27 MiB -1 -1 0.27 18676 1 0.03 -1 -1 30456 -1 -1 31 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65816 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 25.5 MiB 2.77 1364 18239 5649 8664 3926 64.3 MiB 0.29 0.00 5.39684 -169.798 -5.39684 5.39684 0.98 0.00144196 0.00134275 0.125403 0.116737 38 3635 26 6.89349e+06 436909 678818. 2348.85 4.29 0.443837 0.402508 26626 170182 -1 2794 21 2328 3512 235708 57869 4.35709 4.35709 -155.873 -4.35709 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0589729 0.0534258 203 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 7.19 vpr 63.20 MiB -1 -1 0.23 17992 1 0.03 -1 -1 30296 -1 -1 18 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64712 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 24.6 MiB 1.76 847 14606 5701 6811 2094 63.2 MiB 0.17 0.00 3.7437 -110.885 -3.7437 3.7437 0.98 0.000881904 0.000818949 0.0761027 0.0706928 34 2221 18 6.89349e+06 253689 618332. 2139.56 1.72 0.25528 0.230221 25762 151098 -1 1862 20 1225 1687 116449 27905 3.05446 3.05446 -109.582 -3.05446 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0348281 0.0312789 106 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.77 vpr 63.51 MiB -1 -1 0.24 18480 1 0.03 -1 -1 30216 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65036 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.6 MiB 1.62 1157 11993 3200 7722 1071 63.5 MiB 0.18 0.00 4.79572 -144.196 -4.79572 4.79572 0.98 0.00111611 0.00103943 0.0734031 0.0682985 30 2908 25 6.89349e+06 324158 556674. 1926.21 1.34 0.219359 0.19936 25186 138497 -1 2390 21 1420 2295 172635 39043 3.88906 3.88906 -132.165 -3.88906 0 0 706193. 2443.58 0.22 0.10 0.21 -1 -1 0.22 0.0464914 0.0420552 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 10.63 vpr 63.88 MiB -1 -1 0.25 18356 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65408 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 24.9 MiB 2.43 1255 9111 2360 6068 683 63.9 MiB 0.15 0.00 4.32959 -133.247 -4.32959 4.32959 0.99 0.00112788 0.001049 0.0562684 0.0523107 36 2886 26 6.89349e+06 324158 648988. 2245.63 4.39 0.407537 0.366834 26050 158493 -1 2590 22 1503 2513 165770 38201 3.7396 3.7396 -130.994 -3.7396 0 0 828058. 2865.25 0.25 0.11 0.25 -1 -1 0.25 0.0492539 0.0445519 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.75 vpr 63.65 MiB -1 -1 0.23 17736 1 0.03 -1 -1 30240 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65176 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.9 MiB 0.88 980 8934 2029 6214 691 63.6 MiB 0.13 0.00 4.26729 -129.015 -4.26729 4.26729 0.98 0.00100958 0.00093948 0.0474079 0.0441056 32 2582 23 6.89349e+06 366440 586450. 2029.24 1.21 0.176317 0.159735 25474 144626 -1 2157 20 1275 2434 185582 43161 3.5822 3.5822 -125.172 -3.5822 0 0 744469. 2576.02 0.22 0.09 0.21 -1 -1 0.22 0.0397503 0.0358605 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 8.16 vpr 63.98 MiB -1 -1 0.25 18176 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65512 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 25.0 MiB 1.93 1059 12951 4043 6051 2857 64.0 MiB 0.19 0.00 4.45401 -129.14 -4.45401 4.45401 0.98 0.00113657 0.00105628 0.0799018 0.0742623 34 3118 41 6.89349e+06 324158 618332. 2139.56 2.43 0.307856 0.27836 25762 151098 -1 2362 20 1681 2377 196523 48503 3.36926 3.36926 -120.05 -3.36926 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0449041 0.0405733 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.64 vpr 63.74 MiB -1 -1 0.25 18304 1 0.03 -1 -1 30400 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65268 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 24.9 MiB 2.51 1253 16468 4636 10263 1569 63.7 MiB 0.23 0.00 4.19329 -135.481 -4.19329 4.19329 0.99 0.00116807 0.00108621 0.101516 0.094349 36 3132 28 6.89349e+06 338252 648988. 2245.63 2.20 0.357937 0.324039 26050 158493 -1 2664 23 1756 2773 210695 48627 3.60205 3.60205 -132.11 -3.60205 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0515275 0.0465415 154 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.49 vpr 63.84 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30336 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65376 32 32 382 305 1 243 89 17 17 289 -1 unnamed_device 24.9 MiB 2.43 1372 15929 5275 8784 1870 63.8 MiB 0.25 0.00 4.08378 -136.371 -4.08378 4.08378 0.98 0.00121422 0.00112859 0.101125 0.0940043 34 3422 21 6.89349e+06 352346 618332. 2139.56 2.16 0.355512 0.322161 25762 151098 -1 2687 20 1946 2721 204092 47175 3.28176 3.28176 -130.346 -3.28176 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0482237 0.0436849 162 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 9.64 vpr 63.34 MiB -1 -1 0.24 17932 1 0.03 -1 -1 30380 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64860 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 24.8 MiB 1.53 1045 14593 4202 8807 1584 63.3 MiB 0.19 0.00 4.52205 -134.216 -4.52205 4.52205 0.98 0.00105165 0.000979591 0.0848403 0.079014 36 2388 19 6.89349e+06 295971 648988. 2245.63 4.26 0.390166 0.352565 26050 158493 -1 2047 19 1245 2033 126708 30473 3.77156 3.77156 -126.816 -3.77156 0 0 828058. 2865.25 0.25 0.08 0.23 -1 -1 0.25 0.0391902 0.0353768 128 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.48 vpr 63.37 MiB -1 -1 0.13 18408 1 0.03 -1 -1 30244 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64892 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.8 MiB 1.86 987 13883 3666 8021 2196 63.4 MiB 0.19 0.00 4.84598 -138.838 -4.84598 4.84598 0.99 0.00105865 0.000985139 0.0801565 0.0745634 34 2673 38 6.89349e+06 310065 618332. 2139.56 1.95 0.330298 0.298361 25762 151098 -1 2145 20 1449 2129 142022 34141 3.65916 3.65916 -127.486 -3.65916 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0419641 0.0378881 135 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 8.56 vpr 63.74 MiB -1 -1 0.26 18280 1 0.03 -1 -1 30328 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65272 31 32 373 299 1 227 86 17 17 289 -1 unnamed_device 24.7 MiB 2.19 1211 14828 4402 8079 2347 63.7 MiB 0.23 0.00 4.74072 -143.031 -4.74072 4.74072 0.99 0.00118323 0.00110041 0.0960009 0.0892429 34 3272 45 6.89349e+06 324158 618332. 2139.56 2.44 0.341258 0.309269 25762 151098 -1 2708 22 1840 3050 214589 50576 4.0342 4.0342 -136.722 -4.0342 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0517894 0.0468717 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 8.83 vpr 64.31 MiB -1 -1 0.26 18408 1 0.03 -1 -1 30436 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65852 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 25.3 MiB 2.72 1258 10979 3006 7476 497 64.3 MiB 0.18 0.00 4.38808 -134.784 -4.38808 4.38808 1.00 0.00122883 0.00114255 0.0714589 0.066381 34 3389 26 6.89349e+06 352346 618332. 2139.56 2.19 0.337169 0.304301 25762 151098 -1 2762 24 2164 3194 208095 50100 3.8569 3.8569 -135.827 -3.8569 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0565351 0.051099 166 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.16 vpr 62.96 MiB -1 -1 0.23 18016 1 0.03 -1 -1 30532 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64476 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 24.3 MiB 1.35 732 6839 1674 4948 217 63.0 MiB 0.10 0.00 3.52919 -107.237 -3.52919 3.52919 0.99 0.00086231 0.000800724 0.0374765 0.0348137 30 2031 23 6.89349e+06 211408 556674. 1926.21 1.11 0.148065 0.133369 25186 138497 -1 1593 20 923 1412 87150 22305 2.51031 2.51031 -100.653 -2.51031 0 0 706193. 2443.58 0.22 0.07 0.20 -1 -1 0.22 0.0340324 0.0305665 96 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.65 vpr 64.15 MiB -1 -1 0.24 18184 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65688 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 25.2 MiB 1.68 1174 13260 4046 7113 2101 64.1 MiB 0.19 0.00 4.29355 -148.609 -4.29355 4.29355 0.98 0.00109005 0.00101357 0.0823025 0.076532 34 2967 41 6.89349e+06 281877 618332. 2139.56 2.17 0.347729 0.313835 25762 151098 -1 2431 20 1791 2419 190102 42826 3.50195 3.50195 -139.427 -3.50195 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0430012 0.0388413 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.92 vpr 63.81 MiB -1 -1 0.27 18196 1 0.03 -1 -1 30420 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65344 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 24.8 MiB 1.98 1358 17711 6857 9017 1837 63.8 MiB 0.29 0.00 5.47492 -162.011 -5.47492 5.47492 0.99 0.00127477 0.00118694 0.117073 0.108991 36 3332 23 6.89349e+06 352346 648988. 2245.63 2.94 0.392046 0.356246 26050 158493 -1 2728 21 1784 2824 206664 49874 4.52255 4.52255 -151.194 -4.52255 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0524062 0.0475335 168 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.91 vpr 63.74 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30444 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65268 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 24.8 MiB 1.91 1178 13694 4056 7919 1719 63.7 MiB 0.21 0.00 4.47216 -142.443 -4.47216 4.47216 0.98 0.00112527 0.00104696 0.0847125 0.0788066 34 2791 22 6.89349e+06 310065 618332. 2139.56 2.15 0.327967 0.296981 25762 151098 -1 2376 20 1548 2271 171294 38931 3.15571 3.15571 -126.779 -3.15571 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0444931 0.0402392 144 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 7.16 vpr 63.25 MiB -1 -1 0.25 17996 1 0.03 -1 -1 30396 -1 -1 27 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64772 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 24.6 MiB 1.47 951 12563 3271 8399 893 63.3 MiB 0.15 0.00 4.13238 -126.06 -4.13238 4.13238 1.02 0.000929659 0.000863901 0.0614861 0.0570858 34 2359 33 6.89349e+06 380534 618332. 2139.56 1.90 0.274168 0.24652 25762 151098 -1 2048 22 1281 2084 153679 36598 3.34365 3.34365 -124.77 -3.34365 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0397725 0.0357503 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.82 vpr 64.23 MiB -1 -1 0.27 18504 1 0.03 -1 -1 30536 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65776 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 25.4 MiB 3.33 1567 13555 4048 7346 2161 64.2 MiB 0.25 0.00 6.44359 -187.4 -6.44359 6.44359 0.99 0.00138775 0.00129296 0.0956914 0.0891097 36 3916 26 6.89349e+06 380534 648988. 2245.63 3.40 0.399405 0.361961 26050 158493 -1 3304 23 2398 3777 320552 70403 5.27679 5.27679 -177.076 -5.27679 0 0 828058. 2865.25 0.25 0.15 0.23 -1 -1 0.25 0.0624122 0.0565586 188 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.26 vpr 63.68 MiB -1 -1 0.24 18444 1 0.03 -1 -1 30556 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65204 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 24.8 MiB 1.46 1067 14035 3934 8096 2005 63.7 MiB 0.19 0.00 4.72832 -145.11 -4.72832 4.72832 0.98 0.00111163 0.0010335 0.0866314 0.0805787 34 2533 25 6.89349e+06 295971 618332. 2139.56 1.95 0.331761 0.300491 25762 151098 -1 2171 21 1694 2397 163832 39243 3.8003 3.8003 -136.1 -3.8003 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0459982 0.0416214 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.52 vpr 63.03 MiB -1 -1 0.22 17772 1 0.03 -1 -1 30484 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64540 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 24.2 MiB 0.70 695 14713 4314 8460 1939 63.0 MiB 0.16 0.00 3.6346 -100.535 -3.6346 3.6346 1.03 0.00082838 0.000769608 0.0643644 0.0597858 28 1935 24 6.89349e+06 338252 531479. 1839.03 1.15 0.171769 0.155451 24610 126494 -1 1672 19 988 1712 118446 29602 3.03561 3.03561 -104.176 -3.03561 0 0 648988. 2245.63 0.20 0.07 0.18 -1 -1 0.20 0.0309314 0.0277623 94 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 8.59 vpr 63.71 MiB -1 -1 0.24 18260 1 0.03 -1 -1 30264 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65236 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 24.7 MiB 1.90 1217 14679 5443 7869 1367 63.7 MiB 0.22 0.00 5.41897 -143.636 -5.41897 5.41897 0.98 0.00116006 0.00107939 0.0919928 0.085322 34 3122 46 6.89349e+06 324158 618332. 2139.56 2.72 0.388962 0.352149 25762 151098 -1 2526 21 1491 2740 213408 48557 4.44659 4.44659 -141.472 -4.44659 0 0 787024. 2723.27 0.25 0.11 0.24 -1 -1 0.25 0.0485168 0.0439631 149 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 6.53 vpr 63.21 MiB -1 -1 0.22 17796 1 0.03 -1 -1 30172 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64724 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 24.6 MiB 0.92 843 14303 4411 8253 1639 63.2 MiB 0.16 0.00 3.54325 -111.744 -3.54325 3.54325 0.98 0.000868252 0.000806883 0.0711754 0.0660938 34 2099 41 6.89349e+06 267783 618332. 2139.56 1.92 0.280766 0.252648 25762 151098 -1 1771 20 1092 2018 150588 33827 2.81586 2.81586 -108.993 -2.81586 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0341256 0.0306798 98 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 7.18 vpr 63.41 MiB -1 -1 0.26 18032 1 0.03 -1 -1 30608 -1 -1 20 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64936 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 24.7 MiB 1.38 773 9160 2547 5968 645 63.4 MiB 0.13 0.00 4.07968 -116.565 -4.07968 4.07968 1.04 0.000937205 0.000872406 0.0504883 0.0469595 34 2283 29 6.89349e+06 281877 618332. 2139.56 1.97 0.238261 0.214767 25762 151098 -1 1787 19 1272 1795 131917 34224 3.04646 3.04646 -110.732 -3.04646 0 0 787024. 2723.27 0.24 0.08 0.23 -1 -1 0.24 0.0358738 0.0323242 113 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 9.12 vpr 63.70 MiB -1 -1 0.28 18396 1 0.03 -1 -1 30392 -1 -1 26 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65228 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 24.7 MiB 3.03 1139 8919 2183 6102 634 63.7 MiB 0.15 0.00 4.48897 -131.496 -4.48897 4.48897 0.98 0.00113516 0.00105221 0.0555255 0.051638 34 3101 28 6.89349e+06 366440 618332. 2139.56 2.20 0.304671 0.274767 25762 151098 -1 2558 20 1658 2411 179053 42029 3.51095 3.51095 -124.758 -3.51095 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0448297 0.0405008 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.17 vpr 63.76 MiB -1 -1 0.25 18300 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65288 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 24.8 MiB 2.25 1122 9158 2488 6122 548 63.8 MiB 0.15 0.00 4.88804 -152.378 -4.88804 4.88804 0.98 0.00116481 0.00107467 0.0602903 0.0559337 36 3012 26 6.89349e+06 310065 648988. 2245.63 2.17 0.313758 0.283412 26050 158493 -1 2594 20 1907 2801 190611 45707 4.17385 4.17385 -148.208 -4.17385 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0453987 0.041048 151 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.28 vpr 63.77 MiB -1 -1 0.25 18440 1 0.03 -1 -1 30456 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65296 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 24.8 MiB 2.02 1252 12951 3653 7742 1556 63.8 MiB 0.19 0.00 5.47602 -157.843 -5.47602 5.47602 1.00 0.00114269 0.00106279 0.0801015 0.0744991 34 3367 41 6.89349e+06 324158 618332. 2139.56 2.41 0.29877 0.270471 25762 151098 -1 2707 21 1760 2621 184534 44097 4.34229 4.34229 -150.225 -4.34229 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0476508 0.0431093 150 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.49 vpr 63.33 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30228 -1 -1 15 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64852 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 24.7 MiB 1.71 881 10726 3077 6717 932 63.3 MiB 0.19 0.00 4.53843 -126.576 -4.53843 4.53843 1.01 0.00092409 0.000859196 0.0810001 0.07527 34 2217 22 6.89349e+06 211408 618332. 2139.56 1.91 0.281293 0.254027 25762 151098 -1 1926 23 1105 1602 123396 30636 3.22266 3.22266 -117.043 -3.22266 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0410032 0.036878 105 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.57 vpr 63.68 MiB -1 -1 0.26 18304 1 0.03 -1 -1 30484 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65204 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 24.8 MiB 1.72 1053 14483 4664 7716 2103 63.7 MiB 0.19 0.00 3.74261 -124.975 -3.74261 3.74261 0.98 0.00102408 0.000951934 0.0847347 0.0787584 34 2839 36 6.89349e+06 281877 618332. 2139.56 2.00 0.272553 0.246712 25762 151098 -1 2324 19 1500 2094 153256 37612 3.10481 3.10481 -122.557 -3.10481 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0385236 0.0347362 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.80 vpr 63.76 MiB -1 -1 0.25 18296 1 0.03 -1 -1 30504 -1 -1 26 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65292 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 24.8 MiB 2.08 1173 16273 5377 8794 2102 63.8 MiB 0.21 0.00 3.817 -113.195 -3.817 3.817 0.98 0.00106193 0.000986996 0.0911398 0.084711 34 2615 24 6.89349e+06 366440 618332. 2139.56 1.88 0.316715 0.286432 25762 151098 -1 2202 18 1476 2201 146430 35303 2.97851 2.97851 -109.468 -2.97851 0 0 787024. 2723.27 0.26 0.09 0.20 -1 -1 0.26 0.0407145 0.0368702 142 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.98 vpr 63.30 MiB -1 -1 0.24 18184 1 0.03 -1 -1 30564 -1 -1 23 28 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64816 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 24.6 MiB 1.30 909 14123 3958 8851 1314 63.3 MiB 0.17 0.00 4.4511 -113.819 -4.4511 4.4511 0.98 0.000937768 0.000872487 0.0763541 0.0710838 34 2312 21 6.89349e+06 324158 618332. 2139.56 1.95 0.270269 0.243963 25762 151098 -1 1876 19 1002 1757 128002 30931 3.55726 3.55726 -110.799 -3.55726 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0354661 0.031931 119 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 10.13 vpr 63.52 MiB -1 -1 0.25 18180 1 0.03 -1 -1 30504 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65044 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 24.6 MiB 1.84 979 14663 6207 7722 734 63.5 MiB 0.19 0.00 4.62158 -135.813 -4.62158 4.62158 0.99 0.00102096 0.000948387 0.0855046 0.0794092 44 2143 20 6.89349e+06 295971 787024. 2723.27 4.37 0.405176 0.365243 27778 195446 -1 1777 21 1422 2086 140087 32045 3.43004 3.43004 -119.885 -3.43004 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.0418742 0.0377368 131 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 10.16 vpr 63.63 MiB -1 -1 0.26 18340 1 0.03 -1 -1 30212 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65160 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 24.7 MiB 1.78 1197 9966 2574 6122 1270 63.6 MiB 0.15 0.00 4.03794 -140.884 -4.03794 4.03794 0.98 0.00106534 0.000989673 0.0608192 0.0565136 36 2899 28 6.89349e+06 281877 648988. 2245.63 4.59 0.425929 0.382537 26050 158493 -1 2350 21 1808 2504 193711 42368 2.95775 2.95775 -125.673 -2.95775 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0439054 0.039534 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.71 vpr 63.48 MiB -1 -1 0.24 17880 1 0.03 -1 -1 30460 -1 -1 31 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65004 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.8 MiB 0.83 933 8827 1959 6407 461 63.5 MiB 0.14 0.00 4.68742 -132.125 -4.68742 4.68742 0.98 0.00102253 0.000952119 0.0458232 0.0425547 30 2526 23 6.89349e+06 436909 556674. 1926.21 1.27 0.1756 0.158985 25186 138497 -1 1998 34 1162 2332 220532 86780 3.6313 3.6313 -119.794 -3.6313 0 0 706193. 2443.58 0.22 0.15 0.19 -1 -1 0.22 0.0630151 0.0567265 129 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 10.75 vpr 63.85 MiB -1 -1 0.27 18416 1 0.03 -1 -1 30520 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65380 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.9 MiB 2.02 993 15063 4441 7937 2685 63.8 MiB 0.22 0.00 4.79682 -147.448 -4.79682 4.79682 0.99 0.0011614 0.00108081 0.0949661 0.0883092 36 2972 36 6.89349e+06 324158 648988. 2245.63 4.71 0.471169 0.425755 26050 158493 -1 2397 21 1797 2717 206829 50532 4.02846 4.02846 -139.416 -4.02846 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0473476 0.042835 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.94 vpr 64.05 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30488 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65588 32 32 385 308 1 244 90 17 17 289 -1 unnamed_device 25.1 MiB 2.23 1227 14562 3938 8589 2035 64.1 MiB 0.22 0.00 5.38159 -164.838 -5.38159 5.38159 0.99 0.00122576 0.00114025 0.0921462 0.0856885 36 3164 35 6.89349e+06 366440 648988. 2245.63 2.79 0.37863 0.342866 26050 158493 -1 2551 20 1838 2567 182035 42949 4.39545 4.39545 -152.839 -4.39545 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0486832 0.0440276 163 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 8.65 vpr 63.90 MiB -1 -1 0.26 18280 1 0.07 -1 -1 30548 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65432 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 24.8 MiB 2.09 1249 15366 4699 7930 2737 63.9 MiB 0.24 0.00 4.52977 -146.574 -4.52977 4.52977 0.98 0.00122871 0.00114299 0.0980015 0.0911589 38 2956 27 6.89349e+06 366440 678818. 2348.85 2.54 0.367301 0.333153 26626 170182 -1 2506 21 1634 2402 176895 39704 3.60315 3.60315 -134.222 -3.60315 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0506164 0.0458335 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.70 vpr 63.30 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30252 -1 -1 21 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64816 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 24.6 MiB 2.07 905 12323 3823 7116 1384 63.3 MiB 0.15 0.00 4.24433 -127.173 -4.24433 4.24433 0.98 0.000916272 0.000852419 0.0649984 0.0604508 34 2339 19 6.89349e+06 295971 618332. 2139.56 1.89 0.25299 0.2279 25762 151098 -1 1895 19 1147 1634 130789 29772 3.09781 3.09781 -114.29 -3.09781 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0359116 0.0323215 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 9.14 vpr 63.92 MiB -1 -1 0.27 18364 1 0.03 -1 -1 30508 -1 -1 25 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65452 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 24.9 MiB 2.98 1252 13143 3283 8520 1340 63.9 MiB 0.21 0.00 5.23091 -159.91 -5.23091 5.23091 1.00 0.00119559 0.00111226 0.0852223 0.0792823 34 3087 25 6.89349e+06 352346 618332. 2139.56 2.18 0.351568 0.317832 25762 151098 -1 2665 22 2106 2912 211113 51002 4.62069 4.62069 -163.073 -4.62069 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.051066 0.0462141 161 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.05 vpr 63.67 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30408 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65200 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.8 MiB 1.17 1135 15255 4537 8764 1954 63.7 MiB 0.21 0.00 5.17695 -153.732 -5.17695 5.17695 0.98 0.00111847 0.00104074 0.0917584 0.0853599 34 2937 42 6.89349e+06 324158 618332. 2139.56 2.16 0.362977 0.328232 25762 151098 -1 2420 20 1713 2922 223140 51374 3.98126 3.98126 -140.603 -3.98126 0 0 787024. 2723.27 0.23 0.11 0.21 -1 -1 0.23 0.044033 0.0398403 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 8.64 vpr 63.73 MiB -1 -1 0.27 18256 1 0.03 -1 -1 30260 -1 -1 23 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65256 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 24.8 MiB 2.13 1193 13505 4546 7143 1816 63.7 MiB 0.20 0.00 5.02824 -144.831 -5.02824 5.02824 0.98 0.00134438 0.00125833 0.0821705 0.0764332 36 2754 23 6.89349e+06 324158 648988. 2245.63 2.53 0.323865 0.292576 26050 158493 -1 2410 21 1485 2396 195279 42910 4.10275 4.10275 -135.265 -4.10275 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0454665 0.0410837 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.94 vpr 64.27 MiB -1 -1 0.27 18288 1 0.03 -1 -1 30552 -1 -1 26 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65808 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 25.3 MiB 2.57 1197 15103 4411 8230 2462 64.3 MiB 0.22 0.00 4.851 -140.164 -4.851 4.851 0.98 0.00117698 0.00109415 0.0942437 0.087585 36 2826 19 6.89349e+06 366440 648988. 2245.63 2.48 0.335673 0.30397 26050 158493 -1 2509 21 1736 2500 204429 45785 3.89049 3.89049 -134.461 -3.89049 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0484113 0.0437588 162 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.65 vpr 63.98 MiB -1 -1 0.25 18308 1 0.03 -1 -1 30424 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65516 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 25.0 MiB 2.54 1204 16599 6004 7939 2656 64.0 MiB 0.25 0.00 5.44287 -158.373 -5.44287 5.44287 0.98 0.00117562 0.0010926 0.104215 0.0968683 34 3322 24 6.89349e+06 324158 618332. 2139.56 2.22 0.354102 0.32102 25762 151098 -1 2638 22 1878 2848 212556 51781 4.59575 4.59575 -154.908 -4.59575 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0502609 0.0454491 155 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 10.56 vpr 64.02 MiB -1 -1 0.26 18396 1 0.03 -1 -1 30468 -1 -1 30 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65552 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 25.0 MiB 2.23 1306 12535 3228 8012 1295 64.0 MiB 0.19 0.00 4.60117 -137.507 -4.60117 4.60117 0.99 0.00118148 0.00109879 0.0757804 0.0704678 38 2548 21 6.89349e+06 422815 678818. 2348.85 4.40 0.418702 0.377452 26626 170182 -1 2327 21 1396 1853 116502 27971 3.58126 3.58126 -125.229 -3.58126 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.048384 0.0437752 166 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 6.43 vpr 62.99 MiB -1 -1 0.21 17868 1 0.03 -1 -1 30612 -1 -1 17 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64504 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 24.4 MiB 0.96 733 12331 3194 7563 1574 63.0 MiB 0.15 0.00 4.02268 -117.682 -4.02268 4.02268 0.99 0.000861372 0.000800986 0.0630064 0.0585594 34 1901 22 6.89349e+06 239595 618332. 2139.56 1.79 0.243601 0.219552 25762 151098 -1 1595 21 968 1604 105731 26131 2.97131 2.97131 -107.734 -2.97131 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0352844 0.0317205 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 10.69 vpr 63.78 MiB -1 -1 0.25 18476 1 0.03 -1 -1 30324 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65308 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 24.7 MiB 1.89 1366 14741 4940 7308 2493 63.8 MiB 0.12 0.00 5.7749 -170.888 -5.7749 5.7749 1.01 0.00119635 0.00111263 0.0371913 0.0341975 40 2689 20 6.89349e+06 352346 706193. 2443.58 4.91 0.405469 0.364653 26914 176310 -1 2557 21 1755 2472 230188 57666 4.53888 4.53888 -157.619 -4.53888 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0486611 0.044021 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.51 vpr 64.18 MiB -1 -1 0.27 18364 1 0.06 -1 -1 30536 -1 -1 25 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65720 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 25.2 MiB 2.89 1405 14543 3790 8651 2102 64.2 MiB 0.23 0.00 5.38563 -174.831 -5.38563 5.38563 0.98 0.00126296 0.00117007 0.0957068 0.0890094 34 3612 49 6.89349e+06 352346 618332. 2139.56 2.61 0.400656 0.363239 25762 151098 -1 2889 22 2342 3357 266645 63881 4.35868 4.35868 -165.295 -4.35868 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0538564 0.0487635 171 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.66 vpr 63.46 MiB -1 -1 0.22 18096 1 0.03 -1 -1 30384 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64984 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 24.8 MiB 2.19 852 8626 2126 6029 471 63.5 MiB 0.12 0.00 4.14342 -115.954 -4.14342 4.14342 1.01 0.000920466 0.000856344 0.0468882 0.043565 34 2185 21 6.89349e+06 253689 618332. 2139.56 1.77 0.243256 0.218313 25762 151098 -1 1885 20 1240 1675 113567 27907 2.93426 2.93426 -107.15 -2.93426 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.036201 0.0325866 108 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.73 vpr 63.07 MiB -1 -1 0.24 17800 1 0.03 -1 -1 30564 -1 -1 20 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64584 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 24.5 MiB 0.91 843 11783 3233 6725 1825 63.1 MiB 0.14 0.00 3.90644 -115.807 -3.90644 3.90644 0.99 0.000865433 0.000804853 0.0587512 0.0546332 26 2254 24 6.89349e+06 281877 503264. 1741.40 1.14 0.170832 0.154599 24322 120374 -1 1935 21 1255 2068 175525 49247 2.92096 2.92096 -114.016 -2.92096 0 0 618332. 2139.56 0.19 0.12 0.17 -1 -1 0.19 0.0411193 0.0369507 99 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.70 vpr 64.05 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30612 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65584 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.1 MiB 1.93 1150 8727 2018 5615 1094 64.0 MiB 0.13 0.00 4.64652 -149.201 -4.64652 4.64652 0.98 0.0011668 0.00108705 0.0557674 0.0517001 34 3023 35 6.89349e+06 324158 618332. 2139.56 2.09 0.266625 0.240985 25762 151098 -1 2554 19 1774 2490 188679 43049 3.9297 3.9297 -143.11 -3.9297 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0431774 0.0390955 145 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.18 vpr 63.83 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30496 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65364 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 25.0 MiB 1.95 1167 15639 4762 8859 2018 63.8 MiB 0.22 0.00 4.99039 -145.722 -4.99039 4.99039 1.02 0.00114044 0.00106088 0.0966757 0.0899313 36 2540 20 6.89349e+06 324158 648988. 2245.63 2.29 0.334164 0.302545 26050 158493 -1 2171 18 1277 1875 124522 30758 4.12795 4.12795 -138.198 -4.12795 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0417652 0.0377521 149 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 10.06 vpr 63.82 MiB -1 -1 0.25 17948 1 0.03 -1 -1 30200 -1 -1 36 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65352 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.9 MiB 0.65 1179 13092 3559 8453 1080 63.8 MiB 0.21 0.00 5.17121 -146.734 -5.17121 5.17121 0.99 0.00118745 0.0011058 0.0712919 0.0662327 28 3176 29 6.89349e+06 507378 531479. 1839.03 5.46 0.382209 0.345759 24610 126494 -1 2825 47 3110 5782 665826 214605 4.75099 4.75099 -155.32 -4.75099 0 0 648988. 2245.63 0.21 0.31 0.18 -1 -1 0.21 0.100032 0.0902072 157 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.30 vpr 63.84 MiB -1 -1 0.25 18400 1 0.03 -1 -1 30468 -1 -1 25 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65376 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 25.0 MiB 1.54 1065 7191 1699 5079 413 63.8 MiB 0.11 0.00 3.88834 -114.437 -3.88834 3.88834 0.98 0.00103405 0.000961314 0.0413462 0.0384339 34 2679 36 6.89349e+06 352346 618332. 2139.56 2.06 0.280621 0.252333 25762 151098 -1 2276 20 1780 2599 184447 43171 3.00291 3.00291 -104.39 -3.00291 0 0 787024. 2723.27 0.24 0.09 0.21 -1 -1 0.24 0.0408348 0.0368547 136 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.10 vpr 63.07 MiB -1 -1 0.24 18024 1 0.03 -1 -1 30428 -1 -1 20 27 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64584 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 24.4 MiB 1.51 671 12416 5195 5941 1280 63.1 MiB 0.13 0.00 4.39223 -112.843 -4.39223 4.39223 0.98 0.000875397 0.000814986 0.0652212 0.0606427 36 1973 19 6.89349e+06 281877 648988. 2245.63 1.91 0.198714 0.179499 26050 158493 -1 1511 19 1195 1719 131450 35410 3.6083 3.6083 -111.598 -3.6083 0 0 828058. 2865.25 0.25 0.08 0.23 -1 -1 0.25 0.0325279 0.0292054 106 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.48 vpr 64.14 MiB -1 -1 0.27 18548 1 0.03 -1 -1 30412 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65684 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 25.3 MiB 3.46 1558 16615 4500 10327 1788 64.1 MiB 0.27 0.00 4.61521 -148.623 -4.61521 4.61521 0.98 0.00134357 0.00125044 0.112536 0.104708 36 3813 23 6.89349e+06 380534 648988. 2245.63 3.01 0.399731 0.36245 26050 158493 -1 3118 21 2036 3125 224440 51587 4.35865 4.35865 -148.861 -4.35865 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0561046 0.0509107 185 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.31 vpr 63.97 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30392 -1 -1 24 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65508 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 25.0 MiB 2.06 1047 15639 5809 6811 3019 64.0 MiB 0.22 0.00 5.48492 -159.854 -5.48492 5.48492 0.98 0.00116173 0.0010797 0.0977913 0.0907183 36 3137 29 6.89349e+06 338252 648988. 2245.63 2.37 0.354699 0.320774 26050 158493 -1 2250 20 1980 2792 175011 45655 4.55289 4.55289 -150.475 -4.55289 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0464401 0.0420945 155 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.74 vpr 63.81 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30528 -1 -1 20 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65344 32 32 331 280 1 221 84 17 17 289 -1 unnamed_device 24.9 MiB 2.31 998 16737 6124 7825 2788 63.8 MiB 0.22 0.00 4.30139 -136.522 -4.30139 4.30139 0.98 0.00105081 0.0009759 0.0988758 0.0918167 36 2664 26 6.89349e+06 281877 648988. 2245.63 2.55 0.326171 0.294909 26050 158493 -1 2134 19 1464 1937 159613 35882 3.6173 3.6173 -133.209 -3.6173 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.039826 0.0359639 136 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 5.94 vpr 63.73 MiB -1 -1 0.24 18468 1 0.04 -1 -1 30436 -1 -1 21 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65260 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 24.9 MiB 2.08 1090 9571 2534 6373 664 63.7 MiB 0.08 0.00 5.23032 -144.251 -5.23032 5.23032 0.70 0.000405932 0.000373214 0.0229222 0.0211029 30 2644 42 6.89349e+06 295971 556674. 1926.21 0.84 0.0905386 0.0804513 25186 138497 -1 2174 19 1065 1592 101872 24328 3.79356 3.79356 -130.902 -3.79356 0 0 706193. 2443.58 0.20 0.04 0.10 -1 -1 0.20 0.0175661 0.0157848 134 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.60 vpr 63.75 MiB -1 -1 0.27 18300 1 0.03 -1 -1 30548 -1 -1 26 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65276 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 24.8 MiB 1.90 1202 13751 3835 8049 1867 63.7 MiB 0.21 0.00 4.46995 -129.311 -4.46995 4.46995 0.98 0.00120416 0.0011202 0.0867208 0.0806336 34 2998 20 6.89349e+06 366440 618332. 2139.56 1.89 0.336214 0.304804 25762 151098 -1 2537 19 1817 2752 174553 42743 3.79676 3.79676 -127.297 -3.79676 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0457477 0.0414754 163 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 10.52 vpr 63.74 MiB -1 -1 0.24 18420 1 0.03 -1 -1 30648 -1 -1 24 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65272 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 24.8 MiB 2.19 1079 13505 3291 8862 1352 63.7 MiB 0.17 0.00 4.22645 -118.107 -4.22645 4.22645 0.98 0.00105311 0.00097864 0.0795164 0.0739396 38 2498 28 6.89349e+06 338252 678818. 2348.85 4.46 0.406772 0.366634 26626 170182 -1 2133 20 1173 1816 120784 29095 3.456 3.456 -112.635 -3.456 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0414949 0.0374625 140 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 9.11 vpr 63.93 MiB -1 -1 0.25 18180 1 0.03 -1 -1 30360 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65468 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 25.0 MiB 2.46 1201 14828 4491 8253 2084 63.9 MiB 0.22 0.00 4.92758 -154.781 -4.92758 4.92758 0.98 0.0011538 0.00107399 0.0934517 0.0868884 36 2995 22 6.89349e+06 310065 648988. 2245.63 2.77 0.338703 0.307381 26050 158493 -1 2586 21 1751 2854 254751 54914 3.95996 3.95996 -140.121 -3.95996 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.0474934 0.0429456 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 8.69 vpr 64.04 MiB -1 -1 0.28 18252 1 0.03 -1 -1 30152 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65572 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 25.1 MiB 2.38 1278 15969 5302 7451 3216 64.0 MiB 0.22 0.00 4.11194 -136.871 -4.11194 4.11194 0.98 0.00123478 0.00114643 0.101105 0.0937587 34 3446 35 6.89349e+06 366440 618332. 2139.56 2.39 0.387615 0.351003 25762 151098 -1 2493 20 1795 2457 158793 40629 3.25021 3.25021 -127.068 -3.25021 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0485499 0.0439531 167 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.75 vpr 63.32 MiB -1 -1 0.26 18016 1 0.03 -1 -1 30492 -1 -1 20 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64836 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 24.6 MiB 1.28 628 7956 1799 5721 436 63.3 MiB 0.11 0.00 4.24503 -122.739 -4.24503 4.24503 1.03 0.000908825 0.000845298 0.044029 0.0409901 32 2169 46 6.89349e+06 281877 586450. 2029.24 1.73 0.231104 0.207824 25474 144626 -1 1515 22 1494 2000 136450 36381 3.37136 3.37136 -113.966 -3.37136 0 0 744469. 2576.02 0.23 0.09 0.23 -1 -1 0.23 0.0393298 0.0353909 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 10.17 vpr 63.41 MiB -1 -1 0.25 18168 1 0.03 -1 -1 30476 -1 -1 19 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64936 32 32 310 266 1 198 83 17 17 289 -1 unnamed_device 24.8 MiB 1.78 1048 12863 3756 7750 1357 63.4 MiB 0.18 0.00 4.21989 -132.438 -4.21989 4.21989 1.00 0.00100259 0.000930793 0.0751546 0.069875 36 2548 22 6.89349e+06 267783 648988. 2245.63 4.49 0.370636 0.333191 26050 158493 -1 2240 23 1633 2283 195960 43509 3.40305 3.40305 -124.43 -3.40305 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0439471 0.0395416 124 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 7.65 vpr 63.76 MiB -1 -1 0.26 18328 1 0.03 -1 -1 30628 -1 -1 22 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65292 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 24.9 MiB 1.47 1137 13477 4102 7180 2195 63.8 MiB 0.19 0.00 4.87863 -139.519 -4.87863 4.87863 0.98 0.00108177 0.00100258 0.0819673 0.0762476 34 2757 37 6.89349e+06 310065 618332. 2139.56 2.39 0.34244 0.30936 25762 151098 -1 2313 23 1695 2693 193189 46308 3.7113 3.7113 -128.421 -3.7113 0 0 787024. 2723.27 0.24 0.11 0.21 -1 -1 0.24 0.0478862 0.0432459 137 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 7.86 vpr 63.65 MiB -1 -1 0.23 18016 1 0.03 -1 -1 30420 -1 -1 19 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65180 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 24.9 MiB 2.23 741 7132 1582 5226 324 63.7 MiB 0.10 0.00 4.21347 -110.205 -4.21347 4.21347 0.99 0.000886062 0.000824356 0.0389696 0.0362006 36 2007 29 6.89349e+06 267783 648988. 2245.63 1.95 0.231524 0.207458 26050 158493 -1 1694 18 1016 1399 92001 23296 2.9707 2.9707 -100.434 -2.9707 0 0 828058. 2865.25 0.25 0.07 0.23 -1 -1 0.25 0.0320568 0.0288492 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 8.03 vpr 63.27 MiB -1 -1 0.24 18008 1 0.03 -1 -1 30264 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64788 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 24.4 MiB 1.90 990 11652 3107 7306 1239 63.3 MiB 0.15 0.00 4.18333 -131.846 -4.18333 4.18333 1.01 0.000940294 0.000873934 0.064442 0.0599524 34 2445 35 6.89349e+06 253689 618332. 2139.56 2.24 0.281071 0.252833 25762 151098 -1 2131 23 1605 2248 180990 41324 3.13446 3.13446 -120.995 -3.13446 0 0 787024. 2723.27 0.24 0.10 0.23 -1 -1 0.24 0.0421598 0.0380485 114 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 10.38 vpr 63.93 MiB -1 -1 0.27 18424 1 0.03 -1 -1 30160 -1 -1 27 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65460 31 32 373 300 1 237 90 17 17 289 -1 unnamed_device 25.0 MiB 2.04 1223 15366 4453 8707 2206 63.9 MiB 0.22 0.00 4.62897 -148.141 -4.62897 4.62897 0.98 0.00118475 0.00110159 0.0937415 0.0871603 36 2843 22 6.89349e+06 380534 648988. 2245.63 4.47 0.455684 0.41144 26050 158493 -1 2515 19 1804 2546 190039 43948 3.53195 3.53195 -134.688 -3.53195 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0454195 0.0411217 161 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.07 vpr 63.36 MiB -1 -1 0.24 18044 1 0.03 -1 -1 30528 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64884 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 24.7 MiB 1.76 784 6616 1386 4941 289 63.4 MiB 0.10 0.00 3.61555 -111.527 -3.61555 3.61555 0.78 0.000929981 0.000866719 0.0384887 0.0358972 34 2169 23 6.89349e+06 239595 618332. 2139.56 1.83 0.231079 0.207631 25762 151098 -1 1796 21 1128 1607 122753 29532 3.03451 3.03451 -106.927 -3.03451 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0365194 0.0328215 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 8.00 vpr 64.02 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30132 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65552 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 25.1 MiB 2.11 1232 13883 4397 7250 2236 64.0 MiB 0.20 0.00 4.30445 -129.833 -4.30445 4.30445 0.99 0.00112869 0.00104965 0.0856358 0.0796049 34 3037 28 6.89349e+06 310065 618332. 2139.56 1.98 0.334237 0.302322 25762 151098 -1 2478 20 1420 2109 148794 35219 3.34265 3.34265 -123.345 -3.34265 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0443185 0.0400228 146 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 14.54 vpr 63.80 MiB -1 -1 0.27 18252 1 0.03 -1 -1 30408 -1 -1 26 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65332 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 24.8 MiB 2.81 1374 16127 5335 8292 2500 63.8 MiB 0.27 0.00 4.99104 -161.962 -4.99104 4.99104 0.99 0.00123152 0.00114497 0.103654 0.0963325 34 4387 49 6.89349e+06 366440 618332. 2139.56 7.62 0.601151 0.541801 25762 151098 -1 3097 21 2475 3489 291285 66598 4.55499 4.55499 -164.555 -4.55499 0 0 787024. 2723.27 0.23 0.13 0.22 -1 -1 0.23 0.0504204 0.0456233 167 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 10.30 vpr 63.17 MiB -1 -1 0.25 18184 1 0.03 -1 -1 30308 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64684 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 24.6 MiB 2.12 1102 7736 1887 5035 814 63.2 MiB 0.12 0.00 3.7859 -118.769 -3.7859 3.7859 0.99 0.000976179 0.000906935 0.0453646 0.042121 36 2447 26 6.89349e+06 253689 648988. 2245.63 4.38 0.356112 0.318713 26050 158493 -1 2200 22 1422 1962 153174 33944 2.90751 2.90751 -115.427 -2.90751 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0420335 0.0377977 124 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.42 vpr 63.31 MiB -1 -1 0.24 18308 1 0.03 -1 -1 30560 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64832 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 24.6 MiB 1.26 923 8804 2372 6054 378 63.3 MiB 0.13 0.00 4.24743 -129.394 -4.24743 4.24743 1.00 0.000968071 0.000900286 0.0504617 0.0469227 34 2387 36 6.89349e+06 253689 618332. 2139.56 2.37 0.259748 0.233849 25762 151098 -1 2094 22 1382 2085 208617 61943 3.52015 3.52015 -126.667 -3.52015 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0418021 0.0376422 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.63 vpr 63.70 MiB -1 -1 0.24 18396 1 0.04 -1 -1 30264 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65228 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 24.9 MiB 1.91 1050 14828 5325 7370 2133 63.7 MiB 0.19 0.00 4.90028 -137.564 -4.90028 4.90028 0.98 0.00105994 0.000985801 0.0858336 0.0798064 34 2624 25 6.89349e+06 310065 618332. 2139.56 1.91 0.312677 0.282949 25762 151098 -1 2233 21 1444 2026 138076 33383 3.87186 3.87186 -133.576 -3.87186 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0431661 0.0390045 133 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.58 vpr 63.70 MiB -1 -1 0.25 18364 1 0.03 -1 -1 30384 -1 -1 25 29 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65228 29 32 324 268 1 208 86 17 17 289 -1 unnamed_device 24.8 MiB 1.82 1098 14450 3824 8602 2024 63.7 MiB 0.20 0.00 4.06068 -112.703 -4.06068 4.06068 0.99 0.00105315 0.000972556 0.0833182 0.0774748 34 2591 33 6.89349e+06 352346 618332. 2139.56 1.92 0.327642 0.295976 25762 151098 -1 2218 21 1458 2061 145226 35651 3.27031 3.27031 -110.303 -3.27031 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0432047 0.0389703 138 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.33 vpr 63.97 MiB -1 -1 0.26 18280 1 0.03 -1 -1 30656 -1 -1 24 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65508 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 25.2 MiB 2.38 1257 16078 5484 8239 2355 64.0 MiB 0.26 0.00 5.66698 -180.512 -5.66698 5.66698 0.99 0.00124802 0.00116061 0.10624 0.0988142 34 3445 45 6.89349e+06 338252 618332. 2139.56 2.99 0.399026 0.361494 25762 151098 -1 2982 19 1919 2920 248626 56373 4.88398 4.88398 -172.911 -4.88398 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0474568 0.0430576 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.24 vpr 63.00 MiB -1 -1 0.24 17948 1 0.02 -1 -1 30216 -1 -1 17 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64516 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 24.2 MiB 0.94 761 9024 2389 5969 666 63.0 MiB 0.11 0.00 3.2803 -102.743 -3.2803 3.2803 0.98 0.000817051 0.000760216 0.0453849 0.042186 34 1858 19 6.89349e+06 239595 618332. 2139.56 1.63 0.211449 0.189918 25762 151098 -1 1550 17 810 1297 90965 21770 2.46821 2.46821 -94.9652 -2.46821 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0284061 0.0255779 92 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 11.28 vpr 64.05 MiB -1 -1 0.27 18188 1 0.03 -1 -1 30320 -1 -1 27 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65592 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 25.0 MiB 2.19 1326 14167 4936 7169 2062 64.1 MiB 0.23 0.00 5.79178 -174.585 -5.79178 5.79178 0.98 0.00127664 0.0011867 0.0918438 0.085385 38 3114 26 6.89349e+06 380534 678818. 2348.85 4.90 0.508591 0.459197 26626 170182 -1 2463 20 1774 2414 163921 38802 4.83184 4.83184 -162.779 -4.83184 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0504284 0.0456168 175 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.68 vpr 63.88 MiB -1 -1 0.25 18364 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65416 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 24.8 MiB 2.17 1345 11415 2751 7803 861 63.9 MiB 0.19 0.00 4.85389 -165.92 -4.85389 4.85389 0.99 0.00116732 0.00108478 0.0717735 0.0666681 34 3689 36 6.89349e+06 324158 618332. 2139.56 2.62 0.344743 0.310694 25762 151098 -1 2815 23 2544 3196 236228 54523 4.39214 4.39214 -166.535 -4.39214 0 0 787024. 2723.27 0.24 0.12 0.25 -1 -1 0.24 0.0520952 0.0470473 160 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 10.35 vpr 63.98 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30408 -1 -1 22 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65520 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 25.1 MiB 1.86 1062 14450 5050 7036 2364 64.0 MiB 0.21 0.00 4.10168 -125.093 -4.10168 4.10168 0.99 0.0011692 0.00108757 0.0911908 0.0847522 36 2894 28 6.89349e+06 310065 648988. 2245.63 4.62 0.466763 0.421307 26050 158493 -1 2216 22 1609 2179 152941 36532 3.05946 3.05946 -115.94 -3.05946 0 0 828058. 2865.25 0.25 0.10 0.22 -1 -1 0.25 0.0493485 0.0446036 153 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.09 vpr 63.87 MiB -1 -1 0.26 18456 1 0.03 -1 -1 30632 -1 -1 26 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65404 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 25.1 MiB 2.56 1315 16170 4894 8590 2686 63.9 MiB 0.26 0.00 5.8116 -176.256 -5.8116 5.8116 1.00 0.00129497 0.00120483 0.107772 0.100307 34 3472 40 6.89349e+06 366440 618332. 2139.56 2.54 0.363588 0.330242 25762 151098 -1 2695 22 1935 3087 248126 56259 4.50525 4.50525 -156.128 -4.50525 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0568875 0.0515518 172 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.24 vpr 63.30 MiB -1 -1 0.23 18008 1 0.03 -1 -1 30200 -1 -1 15 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64816 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 24.5 MiB 1.00 714 5293 1259 3713 321 63.3 MiB 0.07 0.00 3.04786 -95.0532 -3.04786 3.04786 1.01 0.000763118 0.000708535 0.0267535 0.0248539 34 1666 19 6.89349e+06 211408 618332. 2139.56 1.64 0.181049 0.161625 25762 151098 -1 1466 18 680 894 59309 14435 2.34042 2.34042 -95.9202 -2.34042 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0273971 0.024549 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 7.00 vpr 63.31 MiB -1 -1 0.23 17932 1 0.03 -1 -1 30484 -1 -1 20 30 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64828 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 24.6 MiB 1.33 918 13610 4688 7323 1599 63.3 MiB 0.17 0.00 4.49503 -139.908 -4.49503 4.49503 0.98 0.000953497 0.000886649 0.0756233 0.0701874 34 2207 20 6.89349e+06 281877 618332. 2139.56 1.83 0.272387 0.245575 25762 151098 -1 1811 25 1283 1969 144209 33514 3.41145 3.41145 -127.735 -3.41145 0 0 787024. 2723.27 0.24 0.10 0.24 -1 -1 0.24 0.0453079 0.0407168 119 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 10.10 vpr 63.31 MiB -1 -1 0.23 17964 1 0.03 -1 -1 30136 -1 -1 18 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64832 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 24.5 MiB 2.15 1110 8804 2328 5458 1018 63.3 MiB 0.13 0.00 4.17499 -140.03 -4.17499 4.17499 0.99 0.000990547 0.000920429 0.0509387 0.0473131 34 2959 29 6.89349e+06 253689 618332. 2139.56 4.25 0.394495 0.353017 25762 151098 -1 2377 22 1346 2432 182018 41289 3.6678 3.6678 -137.124 -3.6678 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.042084 0.0378877 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.85 vpr 62.95 MiB -1 -1 0.22 17988 1 0.02 -1 -1 30316 -1 -1 21 25 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 64464 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 24.3 MiB 1.20 575 11200 4680 5492 1028 63.0 MiB 0.11 0.00 3.6605 -87.6445 -3.6605 3.6605 0.98 0.000737136 0.000684223 0.0522083 0.0484662 36 1518 26 6.89349e+06 295971 648988. 2245.63 1.94 0.210964 0.189412 26050 158493 -1 1189 32 887 1326 124734 49762 2.72886 2.72886 -79.5091 -2.72886 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0433324 0.0387454 92 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 11.46 vpr 64.02 MiB -1 -1 0.25 18340 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65552 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 25.0 MiB 3.06 1353 10455 2851 6962 642 64.0 MiB 0.17 0.00 4.36555 -133.994 -4.36555 4.36555 0.98 0.00119486 0.00111099 0.0679135 0.0631012 38 3084 20 6.89349e+06 324158 678818. 2348.85 4.54 0.430668 0.387895 26626 170182 -1 2769 20 1864 2772 180874 41381 3.67166 3.67166 -131.699 -3.67166 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0468952 0.0424304 160 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 9.17 vpr 64.03 MiB -1 -1 0.31 18264 1 0.03 -1 -1 30384 -1 -1 29 31 0 0 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 65568 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.9 MiB 2.58 1246 10442 2641 6824 977 64.0 MiB 0.18 0.00 4.77028 -152.681 -4.77028 4.77028 1.00 0.00126954 0.00118063 0.0673452 0.0625737 34 3458 41 6.89349e+06 408721 618332. 2139.56 2.53 0.377626 0.341095 25762 151098 -1 2763 20 2099 2908 216699 51369 4.32619 4.32619 -155.087 -4.32619 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0509914 0.0461455 179 90 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bidir/config/golden_results.txt index 5e1d0a58a70..9d2e67e35dd 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bidir/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 - k4_n4_v7_bidir.xml styr.blif common 1.48 vpr 57.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 67 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 58568 10 10 253 263 1 169 87 11 11 121 clb auto 19.0 MiB 0.04 1270 57.2 MiB 0.04 0.00 5.46016 -69.6089 -5.46016 5.46016 0.13 0.000215331 0.000171987 0.00792391 0.00665338 13 1998 44 2.43e+06 2.01e+06 -1 -1 0.67 0.0832184 0.0722661 2006 27 1483 4679 322103 41342 9.23088 9.23088 -107.619 -9.23088 0 0 -1 -1 0.03 0.08 0.0198743 0.0176388 - k4_n4_v7_longline_bidir.xml styr.blif common 2.03 vpr 57.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 67 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 58680 10 10 253 263 1 169 87 11 11 121 clb auto 19.1 MiB 0.04 1274 57.3 MiB 0.04 0.00 5.85046 -74.2233 -5.85046 5.85046 0.19 0.000232214 0.000188182 0.00878653 0.00745938 18 2532 43 2.43e+06 2.01e+06 -1 -1 0.88 0.0924504 0.0755557 2435 38 2098 6378 540887 56511 9.2499 9.2499 -108.539 -9.2499 0 0 -1 -1 0.07 0.11 0.0228221 0.0199636 - k4_n4_v7_l1_bidir.xml styr.blif common 2.31 vpr 57.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 67 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 58420 10 10 253 263 1 169 87 11 11 121 clb auto 18.8 MiB 0.04 1314 57.1 MiB 0.05 0.00 7.03989 -83.5605 -7.03989 7.03989 0.17 0.000198421 0.000157186 0.0109691 0.00909187 11 1696 38 2.43e+06 2.01e+06 -1 -1 1.33 0.0788319 0.0684137 1347 23 1338 4185 371579 77951 8.29094 8.29094 -101.157 -8.29094 0 0 -1 -1 0.04 0.10 0.0180735 0.0162332 - k4_n4_v7_bidir_pass_gate.xml styr.blif common 2.59 vpr 57.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 67 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 58404 10 10 253 263 1 169 87 11 11 121 clb auto 18.8 MiB 0.04 1338 57.0 MiB 0.06 0.00 6.19376 -68.5604 -6.19376 6.19376 0.46 0.000203538 0.000160851 0.0127857 0.0106469 16 2173 41 2.43e+06 2.01e+06 -1 -1 1.21 0.0981799 0.0859522 2120 27 1736 5578 1452395 185427 17.5032 17.5032 -249.6 -17.5032 0 0 -1 -1 0.04 0.26 0.0209466 0.0188615 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_n4_v7_bidir.xml styr.blif common 2.13 vpr 57.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 66 10 -1 -1 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 58568 10 10 253 263 1 168 86 11 11 121 clb auto 18.6 MiB 0.05 1259 4055 662 3224 169 57.2 MiB 0.06 0.00 5.62382 -72.8315 -5.62382 5.62382 0.17 0.00133702 0.00123853 0.0334578 0.0311839 13 2102 47 2.43e+06 1.98e+06 -1 -1 0.92 0.32811 0.295883 3282 24655 -1 1951 26 1374 3949 214609 30783 9.21377 9.21377 -99.111 -9.21377 0 0 -1 -1 0.04 0.13 0.02 -1 -1 0.04 0.0674488 0.0609882 +k4_n4_v7_longline_bidir.xml styr.blif common 2.35 vpr 57.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 66 10 -1 -1 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 58884 10 10 253 263 1 168 86 11 11 121 clb auto 18.9 MiB 0.05 1227 3677 434 3072 171 57.5 MiB 0.03 0.00 4.61724 -54.3058 -4.61724 4.61724 0.20 0.000494904 0.000444512 0.0117546 0.0107898 17 2533 45 2.43e+06 1.98e+06 -1 -1 0.91 0.278833 0.25097 3202 31861 -1 2489 42 1673 4405 324288 44983 13.3312 13.3312 -144.751 -13.3312 0 0 -1 -1 0.08 0.19 0.03 -1 -1 0.08 0.101281 0.0913527 +k4_n4_v7_l1_bidir.xml styr.blif common 2.64 vpr 57.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 66 10 -1 -1 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 58624 10 10 253 263 1 168 86 11 11 121 clb auto 18.7 MiB 0.05 1282 7079 1480 5235 364 57.2 MiB 0.10 0.00 6.29818 -80.7609 -6.29818 6.29818 0.20 0.00134128 0.00124709 0.0551926 0.0514507 11 1618 45 2.43e+06 1.98e+06 -1 -1 1.24 0.340392 0.307778 4842 26197 -1 1309 25 1455 4772 302679 55582 7.86059 7.86059 -93.3672 -7.86059 0 0 -1 -1 0.04 0.15 0.03 -1 -1 0.04 0.0659375 0.0597842 +k4_n4_v7_bidir_pass_gate.xml styr.blif common 2.55 vpr 57.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 66 10 -1 -1 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 58924 10 10 253 263 1 168 86 11 11 121 clb auto 19.0 MiB 0.05 1242 4433 605 3621 207 57.5 MiB 0.07 0.00 3.47447 -44.7473 -3.47447 3.47447 0.17 0.00134447 0.00124711 0.0362079 0.0337259 16 2081 40 2.43e+06 1.98e+06 -1 -1 1.14 0.255309 0.230965 3522 30407 -1 2068 30 1450 4790 886793 162884 13.712 13.712 -177.465 -13.712 0 0 -1 -1 0.05 0.31 0.03 -1 -1 0.05 0.0787115 0.0710111 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt index cc882260f8f..6cdffd93070 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 35.93 vpr 975.56 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998976 10 10 168 178 1 68 30 11 8 88 io auto 952.8 MiB 0.54 420 582 82 470 30 975.6 MiB 0.07 0.00 6.38568 -70.463 -6.38568 6.38568 3.45 0.000645075 0.000592785 0.0119866 0.0112148 20 909 46 0 0 100248. 1139.18 0.84 0.12912 0.111352 11180 23751 -1 803 20 495 1987 182273 69910 6.92851 6.92851 -75.9518 -6.92851 0 0 125464. 1425.72 0.02 0.10 0.09 -1 -1 0.02 0.0328754 0.0291737 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 37.04 vpr 975.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 999148 10 10 168 178 1 68 30 11 8 88 io auto 952.6 MiB 0.60 395 582 95 453 34 975.7 MiB 0.07 0.00 6.37094 -69.85 -6.37094 6.37094 3.47 0.000638173 0.000588606 0.012516 0.0117144 30 698 21 0 0 144567. 1642.81 1.56 0.195052 0.165386 11730 32605 -1 613 13 256 907 102553 34444 6.74537 6.74537 -72.8995 -6.74537 0 0 194014. 2204.70 0.03 0.07 0.11 -1 -1 0.03 0.0256888 0.0231304 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 36.49 vpr 976.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 999972 10 10 168 178 1 68 30 11 8 88 io auto 953.5 MiB 0.53 379 582 84 459 39 976.5 MiB 0.08 0.00 6.38543 -68.9302 -6.38543 6.38543 3.85 0.00117056 0.00108398 0.0191957 0.0180156 30 733 26 0 0 144567. 1642.81 1.72 0.412078 0.372155 11730 32605 -1 595 15 304 1303 77064 35227 6.62321 6.62321 -73.1566 -6.62321 0 0 194014. 2204.70 0.04 0.09 0.13 -1 -1 0.04 0.0430054 0.0396466 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 36.53 vpr 976.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 999900 10 10 168 178 1 68 30 11 8 88 io auto 953.4 MiB 0.51 402 582 89 465 28 976.5 MiB 0.08 0.00 6.38543 -69.465 -6.38543 6.38543 3.85 0.00117584 0.00109024 0.0188446 0.0177126 26 876 20 0 0 125464. 1425.72 2.46 0.460152 0.415471 11500 28430 -1 736 13 335 1253 78094 39338 6.89777 6.89777 -75.7093 -6.89777 0 0 163463. 1857.53 0.03 0.06 0.09 -1 -1 0.03 0.0204322 0.0190272 From 2966d66b1e141c9b2c771557fcafe0ca285a20ab Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Tue, 8 Oct 2024 14:31:48 -0400 Subject: [PATCH 10/14] [Router] Resolved Comments and Fixed the RCV Pre-Push Prune Condition Resolved the comments in the PR code reviews, mostly addressing the code comments and coding style issues. Fixed the RCV pre-push prune condition such that when RCV is on, the connection router prunes based on the RCV-specific total path cost to allow detours in order to achieve better QoR. --- vpr/src/base/vpr_types.h | 6 +- vpr/src/route/connection_router.cpp | 103 +++++++++----------- vpr/src/route/connection_router.h | 70 +++++++------ vpr/src/route/connection_router_interface.h | 7 +- vpr/src/route/route_common.cpp | 3 + vpr/src/route/route_tree.h | 26 ++--- 6 files changed, 114 insertions(+), 101 deletions(-) diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index 98f17e898a1..af997047c8e 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1607,7 +1607,10 @@ constexpr bool is_src_sink(e_rr_type type) { return (type == SOURCE || type == S * is being used. * @param backward_path_cost Total cost of the path up to and including this * node. - * @param occ The current occupancy of the associated rr node + * @param R_upstream Upstream resistance to ground from this node in the current + * path search (connection routing), including the resistance + * of the node itself (device_ctx.rr_nodes[index].R). + * @param occ The current occupancy of the associated rr node. */ struct t_rr_node_route_inf { RREdgeId prev_edge; @@ -1615,6 +1618,7 @@ struct t_rr_node_route_inf { float acc_cost; float path_cost; float backward_path_cost; + float R_upstream; public: //Accessors short occ() const { return occ_; } diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index ccfd2acd9bb..6c0286d7793 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -36,7 +36,6 @@ std::tuple ConnectionRouter::timing_driven_rou retry = timing_driven_route_connection_common_setup(rt_root, sink_node, cost_params, bounding_box); if (!std::isinf(rr_node_route_inf_[sink_node].path_cost)) { - rcv_path_manager.update_route_tree_set(rcv_path_data[sink_node]); // Only the `index`, `prev_edge`, and `rcv_path_backward_delay` fields of `out` // are used after this function returns. RTExploredNode out; @@ -44,9 +43,10 @@ std::tuple ConnectionRouter::timing_driven_rou out.prev_edge = rr_node_route_inf_[sink_node].prev_edge; if (rcv_path_manager.is_enabled()) { out.rcv_path_backward_delay = rcv_path_data[sink_node]->backward_delay; + rcv_path_manager.update_route_tree_set(rcv_path_data[sink_node]); + rcv_path_manager.empty_heap(); } heap_.empty_heap(); - rcv_path_manager.empty_heap(); return std::make_tuple(true, /*retry=*/false, out); } else { reset_path_costs(); @@ -159,9 +159,7 @@ std::tuple ConnectionRouter::timing_driven_rou sink_node, cost_params, net_bounding_box); - } - if (std::isinf(rr_node_route_inf_[sink_node].path_cost)) { VTR_LOG("%s\n", describe_unrouteable_connection(source_node, sink_node, is_flat_).c_str()); heap_.empty_heap(); @@ -169,24 +167,21 @@ std::tuple ConnectionRouter::timing_driven_rou return std::make_tuple(false, retry_with_full_bb, RTExploredNode()); } - rcv_path_manager.update_route_tree_set(rcv_path_data[sink_node]); RTExploredNode out; out.index = sink_node; out.prev_edge = rr_node_route_inf_[sink_node].prev_edge; if (rcv_path_manager.is_enabled()) { out.rcv_path_backward_delay = rcv_path_data[sink_node]->backward_delay; + rcv_path_manager.update_route_tree_set(rcv_path_data[sink_node]); + rcv_path_manager.empty_heap(); } heap_.empty_heap(); - rcv_path_manager.empty_heap(); return std::make_tuple(true, retry_with_full_bb, out); } -//Finds a path to sink_node, starting from the elements currently in the heap. -// +// Finds a path to sink_node, starting from the elements currently in the heap. // This is the core maze routing routine. -// -// Returns either the last element of the path, or nullptr if no path is found template void ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeId sink_node, const t_conn_cost_params& cost_params, @@ -223,7 +218,7 @@ void ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeId s target_bb.layer_min = rr_graph_->node_layer(RRNodeId(sink_node)); target_bb.layer_max = rr_graph_->node_layer(RRNodeId(sink_node)); - // Start measuring time before the barrier + // Start measuring path search time std::chrono::steady_clock::time_point begin_time = std::chrono::steady_clock::now(); HeapNode cheapest; @@ -262,9 +257,9 @@ void ConnectionRouter::timing_driven_route_connection_from_heap(RRNodeId s target_bb); } - // Stop measuring time after the barrier and the heap is reset. + // Stop measuring path search time std::chrono::steady_clock::time_point end_time = std::chrono::steady_clock::now(); - this->sssp_total_time += std::chrono::duration_cast(end_time - begin_time); + path_search_cumulative_time += std::chrono::duration_cast(end_time - begin_time); } // Find shortest paths from specified route tree to all nodes in the RR graph @@ -293,9 +288,6 @@ vtr::vector ConnectionRouter::timing_driven_find // // Since there is no single *target* node this uses Dijkstra's algorithm // with a modified exit condition (runs until heap is empty). -// -// Note that to re-use code used for the regular A*-based router we use a -// no-operation lookahead which always returns zero. template vtr::vector ConnectionRouter::timing_driven_find_all_shortest_paths_from_heap( const t_conn_cost_params& cost_params, @@ -308,6 +300,9 @@ vtr::vector ConnectionRouter::timing_driven_find VTR_LOGV_DEBUG(router_debug_, " Initial heap empty (no source)\n"); } + // Start measuring path search time + std::chrono::steady_clock::time_point begin_time = std::chrono::steady_clock::now(); + HeapNode cheapest; while (heap_.try_pop(cheapest)) { // inode with cheapest total cost in current route tree to be expanded on @@ -344,6 +339,10 @@ vtr::vector ConnectionRouter::timing_driven_find } } + // Stop measuring path search time + std::chrono::steady_clock::time_point end_time = std::chrono::steady_clock::now(); + path_search_cumulative_time += std::chrono::duration_cast(end_time - begin_time); + return cheapest_paths; } @@ -354,14 +353,6 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, const t_conn_cost_params& cost_params, const t_bb& bounding_box, const t_bb& target_bb) { - /* I only re-expand a node if both the "known" backward cost is lower * - * in the new expansion (this is necessary to prevent loops from * - * forming in the routing and causing havoc) *and* the expected total * - * cost to the sink is lower than the old value. Different R_upstream * - * values could make a path with lower back_path_cost less desirable * - * than one with higher cost. Test whether or not I should disallow * - * re-expansion based on a higher total cost. */ - float best_total_cost = rr_node_route_inf_[from_node].path_cost; if (best_total_cost == new_total_cost) { // Explore from this node, since its total cost is exactly the same as @@ -374,7 +365,7 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, current.index = from_node; current.backward_path_cost = rr_node_route_inf_[from_node].backward_path_cost; current.prev_edge = rr_node_route_inf_[from_node].prev_edge; - current.R_upstream = rr_node_R_upstream[from_node]; + current.R_upstream = rr_node_route_inf_[from_node].R_upstream; VTR_LOGV_DEBUG(router_debug_, " Better cost to %d\n", from_node); VTR_LOGV_DEBUG(router_debug_, " New total cost: %g\n", new_total_cost); @@ -541,6 +532,7 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& // Initialized to current RTExploredNode next; next.R_upstream = current.R_upstream; + next.index = to_node; next.prev_edge = from_edge; next.total_cost = std::numeric_limits::infinity(); // Not used directly next.backward_path_cost = current.backward_path_cost; @@ -556,8 +548,6 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& evaluate_timing_driven_node_costs(&next, cost_params, from_node, - to_node, - from_edge, target_node); float best_total_cost = rr_node_route_inf_[to_node].path_cost; @@ -566,7 +556,19 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& float new_total_cost = next.total_cost; float new_back_cost = next.backward_path_cost; - if (best_back_cost > new_back_cost) { // TODO: double check the performance of expansion condition + // We need to only expand this node if it is a better path. And we need to + // update its `rr_node_route_inf` data as we put it into the heap; there may + // be other (previously explored) paths to this node in the heap already, + // but they will be pruned when we pop those heap nodes later as we'll see + // they have inferior costs to what is in the `rr_node_route_inf` data for + // this node. + // FIXME: Adding a link to the FPT paper when it is public + // + // When RCV is enabled, prune based on the RCV-specific total path cost (see + // in `compute_node_cost_using_rcv` in `evaluate_timing_driven_node_costs`) + // to allow detours to get better QoR. + if ((!rcv_path_manager.is_enabled() && best_back_cost > new_back_cost) || + (rcv_path_manager.is_enabled() && best_total_cost > new_total_cost)) { VTR_LOGV_DEBUG(router_debug_, " Expanding to node %d (%s)\n", to_node, describe_rr_node(device_ctx.rr_graph, device_ctx.grid, @@ -581,16 +583,7 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& //Pre-heap prune to keep the heap small, by not putting paths which are known to be //sub-optimal (at this point in time) into the heap. - update_cheapest(next, to_node); - // Use the already created next path structure pointer when RCV is enabled - if (rcv_path_manager.is_enabled()) { - rcv_path_manager.move(rcv_path_data[to_node], next.path_data); - - rcv_path_data[to_node]->path_rr = rcv_path_data[from_node]->path_rr; - rcv_path_data[to_node]->edge = rcv_path_data[from_node]->edge; - rcv_path_data[to_node]->path_rr.push_back(from_node); - rcv_path_data[to_node]->edge.push_back(from_edge); - } + update_cheapest(next, from_node); heap_.add_to_heap({new_total_cost, to_node}); update_router_stats(router_stats_, @@ -678,6 +671,9 @@ void ConnectionRouter::empty_rcv_route_tree_set() { template void ConnectionRouter::set_rcv_enabled(bool enable) { rcv_path_manager.set_enabled(enable); + if (enable) { + rcv_path_data.resize(rr_node_route_inf_.size()); + } } //Calculates the cost of reaching to_node @@ -685,8 +681,6 @@ template void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* to, const t_conn_cost_params& cost_params, RRNodeId from_node, - RRNodeId to_node, - RREdgeId from_edge, RRNodeId target_node) { /* new_costs.backward_cost: is the "known" part of the cost to this node -- the * congestion cost of all the routing resources back to the existing route @@ -698,7 +692,7 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* t */ //Info for the switch connecting from_node to_node - int iswitch = rr_nodes_.edge_switch(from_edge); + int iswitch = rr_nodes_.edge_switch(to->prev_edge); bool switch_buffered = rr_switch_inf_[iswitch].buffered(); bool reached_configurably = rr_switch_inf_[iswitch].configurable(); float switch_R = rr_switch_inf_[iswitch].R; @@ -706,7 +700,7 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* t float switch_Cinternal = rr_switch_inf_[iswitch].Cinternal; //To node info - auto rc_index = rr_graph_->node_rc_index(to_node); + auto rc_index = rr_graph_->node_rc_index(to->index); float node_C = rr_rc_data_[rc_index].C; float node_R = rr_rc_data_[rc_index].R; @@ -745,7 +739,7 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* t float cong_cost = 0.; if (reached_configurably) { - cong_cost = get_rr_cong_cost(to_node, cost_params.pres_fac); + cong_cost = get_rr_cong_cost(to->index, cost_params.pres_fac); } else { //Reached by a non-configurable edge. //Therefore the from_node and to_node are part of the same non-configurable node set. @@ -759,8 +753,8 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* t //cost. cong_cost = 0.; } - if (conn_params_->has_choking_spot_ && is_flat_ && rr_graph_->node_type(to_node) == IPIN) { - auto find_res = conn_params_->connection_choking_spots_.find(to_node); + if (conn_params_->has_choking_spot_ && is_flat_ && rr_graph_->node_type(to->index) == IPIN) { + auto find_res = conn_params_->connection_choking_spots_.find(to->index); if (find_res != conn_params_->connection_choking_spots_.end()) { cong_cost = cong_cost / pow(2, (float)find_res->second); } @@ -772,7 +766,7 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* t if (cost_params.bend_cost != 0.) { t_rr_type from_type = rr_graph_->node_type(from_node); - t_rr_type to_type = rr_graph_->node_type(to_node); + t_rr_type to_type = rr_graph_->node_type(to->index); if ((from_type == CHANX && to_type == CHANY) || (from_type == CHANY && to_type == CHANX)) { to->backward_path_cost += cost_params.bend_cost; //Bend cost } @@ -782,20 +776,17 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* t if (rcv_path_manager.is_enabled() && to->path_data != nullptr) { to->path_data->backward_delay += cost_params.criticality * Tdel; - to->path_data->backward_cong += (1. - cost_params.criticality) * get_rr_cong_cost(to_node, cost_params.pres_fac); + to->path_data->backward_cong += (1. - cost_params.criticality) * get_rr_cong_cost(to->index, cost_params.pres_fac); - total_cost = compute_node_cost_using_rcv(cost_params, to_node, target_node, to->path_data->backward_delay, to->path_data->backward_cong, to->R_upstream); + total_cost = compute_node_cost_using_rcv(cost_params, to->index, target_node, to->path_data->backward_delay, to->path_data->backward_cong, to->R_upstream); } else { const auto& device_ctx = g_vpr_ctx.device(); //Update total cost - float expected_cost = router_lookahead_.get_expected_cost(to_node, - target_node, - cost_params, - to->R_upstream); + float expected_cost = router_lookahead_.get_expected_cost(to->index, target_node, cost_params, to->R_upstream); VTR_LOGV_DEBUG(router_debug_ && !std::isfinite(expected_cost), " Lookahead from %s (%s) to %s (%s) is non-finite, expected_cost = %f, to->R_upstream = %f\n", - rr_node_arch_name(to_node, is_flat_).c_str(), - describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, to_node, is_flat_).c_str(), + rr_node_arch_name(to->index, is_flat_).c_str(), + describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, to->index, is_flat_).c_str(), rr_node_arch_name(target_node, is_flat_).c_str(), describe_rr_node(device_ctx.rr_graph, device_ctx.grid, device_ctx.rr_indexed_data, target_node, is_flat_).c_str(), expected_cost, to->R_upstream); @@ -885,7 +876,7 @@ void ConnectionRouter::add_route_tree_node_to_heap( rr_node_route_inf_[inode].path_cost = tot_cost; rr_node_route_inf_[inode].prev_edge = RREdgeId::INVALID(); rr_node_route_inf_[inode].backward_path_cost = backward_path_cost; - rr_node_R_upstream[inode] = R_upstream; + rr_node_route_inf_[inode].R_upstream = R_upstream; heap_.push_back({tot_cost, inode}); // push_back_node(&heap_, rr_node_route_inf_, @@ -898,7 +889,7 @@ void ConnectionRouter::add_route_tree_node_to_heap( rr_node_route_inf_[inode].path_cost = expected_total_cost; rr_node_route_inf_[inode].prev_edge = RREdgeId::INVALID(); rr_node_route_inf_[inode].backward_path_cost = backward_path_cost; - rr_node_R_upstream[inode] = R_upstream; + rr_node_route_inf_[inode].R_upstream = R_upstream; rcv_path_manager.alloc_path_struct(rcv_path_data[inode]); rcv_path_data[inode]->backward_delay = rt_node.Tdel; diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index 9e5d9ea141b..cee93384974 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -43,15 +43,15 @@ class ConnectionRouter : public ConnectionRouterInterface { , rr_node_route_inf_(rr_node_route_inf) , is_flat_(is_flat) , router_stats_(nullptr) - , router_debug_(false) { + , router_debug_(false) + , path_search_cumulative_time(0) { heap_.init_heap(grid); only_opin_inter_layer = (grid.get_num_layers() > 1) && inter_layer_connections_limited_to_opin(*rr_graph); - rr_node_R_upstream.resize(rr_node_route_inf.size()); - rcv_path_data.resize(rr_node_route_inf.size()); } ~ConnectionRouter() { - VTR_LOG("Serial Connection Router is being destroyed. Time spent computing SSSP: %.3f seconds.\n", this->sssp_total_time.count() / 1000000.0); + VTR_LOG("Serial Connection Router is being destroyed. Time spent on path search: %.3f seconds.\n", + std::chrono::duration(path_search_cumulative_time).count()); } // Clear's the modified list. Should be called after reset_path_costs @@ -65,12 +65,11 @@ class ConnectionRouter : public ConnectionRouterInterface { // Reset the node info stored in rr_node_route_inf variable ::reset_path_costs(modified_rr_node_inf_); // Reset the node info stored inside the connection router - for (const auto& node : modified_rr_node_inf_) { - rcv_path_data[node] = nullptr; + if (rcv_path_manager.is_enabled()) { + for (const auto& node : modified_rr_node_inf_) { + rcv_path_data[node] = nullptr; + } } - // Note: R_upstream of each node is intentionally not reset here. - // For the reasons and details, please refer to the `Update R_upstream` - // in `evaluate_timing_driven_node_costs` in `connection_router.cpp`. } /** Finds a path from the route tree rooted at rt_root to sink_node. @@ -80,7 +79,7 @@ class ConnectionRouter : public ConnectionRouterInterface { * Returns a tuple of: * bool: path exists? (hard failure, rr graph disconnected) * bool: should retry with full bounding box? (only used in parallel routing) - * RTExploredNode: the explored sink node with the cheapest path */ + * RTExploredNode: the explored sink node, from which the cheapest path can be found via back-tracing */ std::tuple timing_driven_route_connection_from_route_tree( const RouteTreeNode& rt_root, RRNodeId sink_node, @@ -98,7 +97,7 @@ class ConnectionRouter : public ConnectionRouterInterface { * Returns a tuple of: * bool: path exists? (hard failure, rr graph disconnected) * bool: should retry with full bounding box? (only used in parallel routing) - * RTExploredNode: the explored sink node with the cheapest path */ + * RTExploredNode: the explored sink node, from which the cheapest path can be found via back-tracing */ std::tuple timing_driven_route_connection_from_route_tree_high_fanout( const RouteTreeNode& rt_root, RRNodeId sink_node, @@ -117,6 +116,9 @@ class ConnectionRouter : public ConnectionRouterInterface { // Dijkstra's algorithm with a modified exit condition (runs until heap is // empty). When using cost_params.astar_fac = 0, for efficiency the // RouterLookahead used should be the NoOpLookahead. + // + // Note: This routine is currently used only to generate information that + // may be helpful in debugging an architecture. vtr::vector timing_driven_find_all_shortest_paths_from_route_tree( const RouteTreeNode& rt_root, const t_conn_cost_params& cost_params, @@ -148,18 +150,24 @@ class ConnectionRouter : public ConnectionRouterInterface { } } - // Update the route path to the node pointed to by cheapest. - inline void update_cheapest(const RTExploredNode& cheapest, RRNodeId inode) { - update_cheapest(cheapest, inode, &rr_node_route_inf_[inode]); - } - - inline void update_cheapest(const RTExploredNode& cheapest, RRNodeId inode, t_rr_node_route_inf* route_inf) { - //Record final link to target + // Update the route path to the node `cheapest.index` via the path from + // `from_node` via `cheapest.prev_edge`. + inline void update_cheapest(RTExploredNode& cheapest, const RRNodeId& from_node) { + const RRNodeId& inode = cheapest.index; add_to_mod_list(inode); - - route_inf->prev_edge = cheapest.prev_edge; - route_inf->path_cost = cheapest.total_cost; - route_inf->backward_path_cost = cheapest.backward_path_cost; + rr_node_route_inf_[inode].prev_edge = cheapest.prev_edge; + rr_node_route_inf_[inode].path_cost = cheapest.total_cost; + rr_node_route_inf_[inode].backward_path_cost = cheapest.backward_path_cost; + + // Use the already created next path structure pointer when RCV is enabled + if (rcv_path_manager.is_enabled()) { + rcv_path_manager.move(rcv_path_data[inode], cheapest.path_data); + + rcv_path_data[inode]->path_rr = rcv_path_data[from_node]->path_rr; + rcv_path_data[inode]->edge = rcv_path_data[from_node]->edge; + rcv_path_data[inode]->path_rr.push_back(from_node); + rcv_path_data[inode]->edge.push_back(cheapest.prev_edge); + } } /** Common logic from timing_driven_route_connection_from_route_tree and @@ -179,6 +187,11 @@ class ConnectionRouter : public ConnectionRouterInterface { // Finds a path to sink_node, starting from the elements currently in the // heap. // + // If the path is not found, which means that the path_cost of sink_node in + // RR node route info has never been updated, `rr_node_route_inf_[sink_node] + // .path_cost` will be the initial value (i.e., float infinity). This case + // can be detected by `std::isinf(rr_node_route_inf_[sink_node].path_cost)`. + // // This is the core maze routing routine. // // Note: For understanding the connection router, start here. @@ -232,8 +245,6 @@ class ConnectionRouter : public ConnectionRouterInterface { RTExploredNode* to, const t_conn_cost_params& cost_params, RRNodeId from_node, - RRNodeId to_node, - RREdgeId from_edge, RRNodeId target_node); // Find paths from current heap to all nodes in the RR graph @@ -291,14 +302,11 @@ class ConnectionRouter : public ConnectionRouterInterface { bool only_opin_inter_layer; - // Timing - std::chrono::microseconds sssp_total_time{0}; - - // Used only by the timing-driven router. Stores the upstream resistance to ground from each RR node, including the - // resistance of the node itself (device_ctx.rr_nodes[index].R). - vtr::vector rr_node_R_upstream; + // Cumulative time spent in the path search part of the connection router. + std::chrono::microseconds path_search_cumulative_time; - // The path manager for RCV, keeps track of the route tree as a set, also manages the allocation of `rcv_path_data` + // The path manager for RCV, keeps track of the route tree as a set, also + // manages the allocation of `rcv_path_data`. PathManager rcv_path_manager; vtr::vector rcv_path_data; }; diff --git a/vpr/src/route/connection_router_interface.h b/vpr/src/route/connection_router_interface.h index 507bb2c67f3..62111edc285 100644 --- a/vpr/src/route/connection_router_interface.h +++ b/vpr/src/route/connection_router_interface.h @@ -52,7 +52,7 @@ class ConnectionRouterInterface { * Returns a tuple of: * bool: path exists? (hard failure, rr graph disconnected) * bool: should retry with full bounding box? - * RTExploredNode: the explored sink node with the cheapest path */ + * RTExploredNode: the explored sink node, from which the cheapest path can be found via back-tracing */ virtual std::tuple timing_driven_route_connection_from_route_tree( const RouteTreeNode& rt_root, RRNodeId sink_node, @@ -71,7 +71,7 @@ class ConnectionRouterInterface { * Returns a tuple of: * bool: path exists? (hard failure, rr graph disconnected) * bool: should retry with full bounding box? - * RTExploredNode: the explored sink node with the cheapest path */ + * RTExploredNode: the explored sink node, from which the cheapest path can be found via back-tracing */ virtual std::tuple timing_driven_route_connection_from_route_tree_high_fanout( const RouteTreeNode& rt_root, RRNodeId sink_node, @@ -91,6 +91,9 @@ class ConnectionRouterInterface { // Dijkstra's algorithm with a modified exit condition (runs until heap is // empty). When using cost_params.astar_fac = 0, for efficiency the // RouterLookahead used should be the NoOpLookahead. + // + // Note: This routine is currently used only to generate information that + // may be helpful in debugging an architecture. virtual vtr::vector timing_driven_find_all_shortest_paths_from_route_tree( const RouteTreeNode& rt_root, const t_conn_cost_params& cost_params, diff --git a/vpr/src/route/route_common.cpp b/vpr/src/route/route_common.cpp index c855af99e31..518208e6f3b 100644 --- a/vpr/src/route/route_common.cpp +++ b/vpr/src/route/route_common.cpp @@ -289,6 +289,9 @@ void reset_path_costs(const std::vector& visited_rr_nodes) { route_ctx.rr_node_route_inf[node].path_cost = std::numeric_limits::infinity(); route_ctx.rr_node_route_inf[node].backward_path_cost = std::numeric_limits::infinity(); route_ctx.rr_node_route_inf[node].prev_edge = RREdgeId::INVALID(); + // Note: R_upstream of each node is intentionally not reset here. + // For the reasons and details, please refer to the `Update R_upstream` + // in `evaluate_timing_driven_node_costs` in `connection_router.cpp`. } } diff --git a/vpr/src/route/route_tree.h b/vpr/src/route/route_tree.h index 841df13cdaf..37e89db16ae 100644 --- a/vpr/src/route/route_tree.h +++ b/vpr/src/route/route_tree.h @@ -332,22 +332,26 @@ class RTExploredNode { public: /* Used inside the connection router */ - ///@brief The cost used to sort heap. For the timing-driven router this is the backward_path_cost + expected cost to the target. - float total_cost = 0.; - ///@brief The "known" cost of the path up to and including this node. Used only by the timing-driven router. In this case, the - ///.cost member contains not only the known backward cost but also an expected cost to the target. - float backward_path_cost; - ///@brief Used only by the timing-driven router. Stores the upstream resistance to ground from this node, including the resistance - /// of the node itself (device_ctx.rr_nodes[index].R). - float R_upstream; + ///@brief The cost used to sort heap. For the timing-driven router this is the backward_path_cost + /// plus the expected cost to the target. + float total_cost = std::numeric_limits::infinity(); + ///@brief The "known" cost of the path up to and including this node. + float backward_path_cost = std::numeric_limits::infinity(); + ///@brief Stores the upstream resistance to ground from this node in the path search (connection + /// routing), including the resistance of the node itself (device_ctx.rr_nodes[index].R). + float R_upstream = std::numeric_limits::infinity(); ///@brief Structure to handle extra RCV structures. Managed by PathManager class. - t_heap_path* path_data; + t_heap_path* path_data = nullptr; /* Used outside the connection router as the return values (`index` and `prev_edge` are also used inside the router). */ - ///@brief The RR node index associated with the costs/R_upstream values. + ///@brief The RR node index associated with the costs/R_upstream values. Outside the + /// connection router, this field is mainly used in `RouteTree::update_from_heap` and + /// `RouteTree::add_subtree_from_heap`. Inside the connection router, this is used as + /// part of the node info passed as a parameter of some member functions. RRNodeId index = RRNodeId::INVALID(); - ///@brief The edge from the previous node used to reach the current. + ///@brief The edge from the previous node used to reach the current. Same usage as the + /// `index` field described above. RREdgeId prev_edge = RREdgeId::INVALID(); ///@brief The delay of the partial path plus the path from route tree to source. /// Needed by RCV. Set to infinity if RCV is disabled. This field is used as part From e459f9343659014bb3e90555c0f06cbf0d2aab5d Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Tue, 15 Oct 2024 11:42:16 -0400 Subject: [PATCH 11/14] [Router] Added Comments for RCV in the Post-Pop Prune Function Added Vaughn's detailed comments explaining the RCV technique and how the post-pop prune function in the connection router works for RCV. --- vpr/src/route/connection_router.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 6c0286d7793..dd7af0f85e6 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -361,6 +361,15 @@ void ConnectionRouter::timing_driven_expand_cheapest(RRNodeId from_node, // `new_total_cost` is used here as an identifier to detect if the pair // (from_node or inode, new_total_cost) was the most recently pushed // element for the corresponding node. + // + // Note: For RCV, it often isn't searching for a shortest path; it is + // searching for a path in the target delay range. So it might find a + // path to node n that has a higher `backward_path_cost` but the `total_cost` + // (including expected delay to sink, going through a cost function that + // checks that against the target delay) might be lower than the previously + // stored value. In that case we want to re-expand the node so long as + // it doesn't create a loop. That `rcv_path_manager` should store enough + // info for us to avoid loops. RTExploredNode current; current.index = from_node; current.backward_path_cost = rr_node_route_inf_[from_node].backward_path_cost; From 45e2b132d74e943da1d6de5bcf79c8c2e85902fe Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Tue, 15 Oct 2024 11:50:32 -0400 Subject: [PATCH 12/14] [Router] Fixed a Bug in the Connection Router After Changing Some APIs After changing the API of `evaluate_timing_driven_node_costs`, there was a typo (or bug) left inside an ifdef block. This commit fixed the bug and changed the typo to the correct variable name. --- vpr/src/route/connection_router.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index dd7af0f85e6..9c32a55e33c 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -685,7 +685,7 @@ void ConnectionRouter::set_rcv_enabled(bool enable) { } } -//Calculates the cost of reaching to_node +//Calculates the cost of reaching to_node (i.e., to->index) template void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* to, const t_conn_cost_params& cost_params, @@ -700,7 +700,7 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* t * new_costs.R_upstream: is the upstream resistance at the end of this node */ - //Info for the switch connecting from_node to_node + //Info for the switch connecting from_node to_node (i.e., to->index) int iswitch = rr_nodes_.edge_switch(to->prev_edge); bool switch_buffered = rr_switch_inf_[iswitch].buffered(); bool reached_configurably = rr_switch_inf_[iswitch].configurable(); @@ -753,7 +753,7 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(RTExploredNode* t //Reached by a non-configurable edge. //Therefore the from_node and to_node are part of the same non-configurable node set. #ifdef VTR_ASSERT_SAFE_ENABLED - VTR_ASSERT_SAFE_MSG(same_non_config_node_set(from_node, to_node), + VTR_ASSERT_SAFE_MSG(same_non_config_node_set(from_node, to->index), "Non-configurably connected edges should be part of the same node set"); #endif From c16bb239b13567f0dad499a08ba8a16beaeb2fcf Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Tue, 15 Oct 2024 14:31:38 -0400 Subject: [PATCH 13/14] [Router] Fixed `vtr_reg_strong` QoR Failures After Rebasing to Master `strong_place_delay_calc_method` and `strong_place_delay_model` tests had QoR failures after rebasing to master at commit 5925e69. This commit updated the corresponding golden results to make the regression tests happy. --- .../config/golden_results.txt | 10 +++++----- .../strong_place_delay_model/config/golden_results.txt | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) 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 66168627a8f..fcf92ec7e8f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt @@ -1,5 +1,5 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 34.84 vpr 975.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998768 10 10 168 178 1 68 30 11 8 88 io auto 952.5 MiB 0.50 358 812 97 660 55 975.4 MiB 0.07 0.00 6.44563 -69.2664 -6.44563 6.44563 3.31 0.000633306 0.000584828 0.014981 0.013961 26 784 31 0 0 125464. 1425.72 1.77 0.217747 0.184211 11500 28430 -1 625 17 282 1013 95514 35394 6.59221 6.59221 -74.0805 -6.59221 0 0 163463. 1857.53 0.03 0.07 0.09 -1 -1 0.03 0.0275927 0.0245705 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 34.42 vpr 975.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998944 10 10 168 178 1 68 30 11 8 88 io auto 952.6 MiB 0.50 365 812 101 651 60 975.5 MiB 0.10 0.00 6.37156 -69.5088 -6.37156 6.37156 3.32 0.000634379 0.000586337 0.015972 0.0149437 24 851 26 0 0 114778. 1304.29 1.37 0.179349 0.152804 11416 27150 -1 691 14 354 1388 135595 52969 6.82221 6.82221 -75.6812 -6.82221 0 0 153433. 1743.56 0.03 0.07 0.09 -1 -1 0.03 0.024931 0.0223273 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 35.84 vpr 975.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998788 10 10 168 178 1 68 30 11 8 88 io auto 952.4 MiB 0.50 367 812 86 668 58 975.4 MiB 0.15 0.00 6.39336 -69.4912 -6.39336 6.39336 4.34 0.000639177 0.000587378 0.017224 0.0162017 22 875 22 0 0 110609. 1256.92 1.66 0.199683 0.169442 11258 24748 -1 730 18 335 1182 109582 46429 6.92426 6.92426 -76.9247 -6.92426 0 0 134428. 1527.59 0.02 0.07 0.09 -1 -1 0.02 0.0283942 0.0252052 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 35.35 vpr 975.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998932 10 10 168 178 1 68 30 11 8 88 io auto 952.8 MiB 0.50 368 812 78 675 59 975.5 MiB 0.07 0.00 6.26392 -68.4373 -6.26392 6.26392 4.33 0.000637702 0.000588521 0.0149562 0.0139792 28 776 45 0 0 134428. 1527.59 1.48 0.227998 0.19302 11590 29630 -1 595 13 254 987 91515 32222 6.61176 6.61176 -72.652 -6.61176 0 0 173354. 1969.93 0.03 0.07 0.10 -1 -1 0.03 0.0241301 0.021664 + arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time + stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 27.50 vpr 977.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 0f69adb Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1025-azure x86_64 2024-10-15T16:01:56 fv-az837-567 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 1001044 10 10 168 178 1 68 30 11 8 88 io auto 956.2 MiB 0.45 370 858 95 697 66 977.6 MiB 0.04 0.00 6.45248 -69.1493 -6.45248 6.45248 2.68 0.000346945 0.000301901 0.0109124 0.00985616 -1 -1 -1 -1 32 693 33 0 0 153433. 1743.56 1.19 0.127615 0.111696 11830 34246 -1 570 10 235 725 56242 26416 6.94346 6.94346 -73.9579 -6.94346 0 0 205860. 2339.32 0.06 0.04 0.08 -1 -1 0.06 0.0194505 0.0184001 + stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 27.82 vpr 977.35 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 0f69adb Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1025-azure x86_64 2024-10-15T16:01:56 fv-az837-567 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 1000804 10 10 168 178 1 68 30 11 8 88 io auto 954.9 MiB 0.45 369 812 82 656 74 977.3 MiB 0.04 0.00 6.45248 -69.2479 -6.45248 6.45248 2.74 0.00035978 0.000313724 0.0101986 0.00925468 -1 -1 -1 -1 32 691 29 0 0 153433. 1743.56 1.24 0.130899 0.114171 11830 34246 -1 553 12 224 697 51846 24062 6.94346 6.94346 -73.4811 -6.94346 0 0 205860. 2339.32 0.06 0.04 0.08 -1 -1 0.06 0.0206713 0.0194697 + stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 28.08 vpr 977.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 0f69adb Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1025-azure x86_64 2024-10-15T16:01:56 fv-az837-567 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 1001124 10 10 168 178 1 68 30 11 8 88 io auto 955.1 MiB 0.47 370 812 89 663 60 977.7 MiB 0.04 0.00 6.52191 -68.7563 -6.52191 6.52191 3.40 0.000347877 0.0002958 0.010332 0.00933957 -1 -1 -1 -1 22 809 21 0 0 110609. 1256.92 0.45 0.066663 0.0592234 11258 24748 -1 663 14 329 1173 67735 35710 7.04515 7.04515 -76.4932 -7.04515 0 0 134428. 1527.59 0.04 0.05 0.07 -1 -1 0.04 0.0237505 0.0223282 + stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 28.29 vpr 977.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 0f69adb Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1025-azure x86_64 2024-10-15T16:01:56 fv-az837-567 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 1001072 10 10 168 178 1 68 30 11 8 88 io auto 955.2 MiB 0.45 368 812 95 656 61 977.6 MiB 0.04 0.00 6.34478 -68.8031 -6.34478 6.34478 3.48 0.000358527 0.000311549 0.0101593 0.00922939 -1 -1 -1 -1 28 753 22 0 0 134428. 1527.59 0.44 0.0663655 0.0590372 11590 29630 -1 624 15 260 959 55378 26467 6.64742 6.64742 -72.827 -6.64742 0 0 173354. 1969.93 0.05 0.04 0.07 -1 -1 0.05 0.0225106 0.0210004 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt index 6cdffd93070..10c4b944169 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 36.49 vpr 976.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 999972 10 10 168 178 1 68 30 11 8 88 io auto 953.5 MiB 0.53 379 582 84 459 39 976.5 MiB 0.08 0.00 6.38543 -68.9302 -6.38543 6.38543 3.85 0.00117056 0.00108398 0.0191957 0.0180156 30 733 26 0 0 144567. 1642.81 1.72 0.412078 0.372155 11730 32605 -1 595 15 304 1303 77064 35227 6.62321 6.62321 -73.1566 -6.62321 0 0 194014. 2204.70 0.04 0.09 0.13 -1 -1 0.04 0.0430054 0.0396466 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 36.53 vpr 976.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 06e69833b release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-24T21:01:36 betzgrp-wintermute.eecg.utoronto.ca /home/yanhang1/vtr-verilog-to-routing 999900 10 10 168 178 1 68 30 11 8 88 io auto 953.4 MiB 0.51 402 582 89 465 28 976.5 MiB 0.08 0.00 6.38543 -69.465 -6.38543 6.38543 3.85 0.00117584 0.00109024 0.0188446 0.0177126 26 876 20 0 0 125464. 1425.72 2.46 0.460152 0.415471 11500 28430 -1 736 13 335 1253 78094 39338 6.89777 6.89777 -75.7093 -6.89777 0 0 163463. 1857.53 0.03 0.06 0.09 -1 -1 0.03 0.0204322 0.0190272 + arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time + stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 28.29 vpr 977.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 0f69adb Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1025-azure x86_64 2024-10-15T16:01:56 fv-az837-567 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 1001196 10 10 168 178 1 68 30 11 8 88 io auto 955.4 MiB 0.43 393 628 105 491 32 977.7 MiB 0.03 0.00 6.51193 -69.1178 -6.51193 6.51193 2.64 0.000368496 0.000316279 0.00897708 0.00821508 -1 -1 -1 -1 20 893 28 0 0 100248. 1139.18 1.58 0.129641 0.112291 11180 23751 -1 831 19 496 1987 121384 60113 6.91414 6.91414 -78.1319 -6.91414 0 0 125464. 1425.72 0.04 0.06 0.07 -1 -1 0.04 0.0265283 0.0245474 + stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 28.12 vpr 977.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 0f69adb Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1025-azure x86_64 2024-10-15T16:01:56 fv-az837-567 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 1000956 10 10 168 178 1 68 30 11 8 88 io auto 955.9 MiB 0.54 380 628 91 496 41 977.5 MiB 0.05 0.00 6.52338 -69.1003 -6.52338 6.52338 2.70 0.000355671 0.000305949 0.00939391 0.00863885 -1 -1 -1 -1 30 673 12 0 0 144567. 1642.81 1.15 0.113164 0.0991248 11730 32605 -1 585 9 216 698 45031 21119 6.8993 6.8993 -73.7008 -6.8993 0 0 194014. 2204.70 0.08 0.05 0.08 -1 -1 0.08 0.0197747 0.0187602 From d9f18cd87398acd2b87a2b6a645dd3180ab48f2a Mon Sep 17 00:00:00 2001 From: Hang Yan Date: Thu, 17 Oct 2024 23:26:24 -0400 Subject: [PATCH 14/14] [Router] Fixed the Bug Causing Tons of Nightly Test Failures The bug was introduced by me in commit 2966d66; I merged two adjacent if-bodies with conditions that appeared the same, but were in fact not. A simplified example is: `if (A == 0) { ... A might be modified ... } if (A == 0) { return ; }` Merging the if-bodies would be problematic if A is modified in the first if-body and is no longer 0. This mistake caused tons of nightly test failures, as mentioned in the comments in PR#2720. So glad that the nightly tests CAUGHT this bug, which was not detected by the VTR strong regression tests. --- vpr/src/route/connection_router.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 9c32a55e33c..1e0aab971b2 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -159,7 +159,9 @@ std::tuple ConnectionRouter::timing_driven_rou sink_node, cost_params, net_bounding_box); + } + if (std::isinf(rr_node_route_inf_[sink_node].path_cost)) { VTR_LOG("%s\n", describe_unrouteable_connection(source_node, sink_node, is_flat_).c_str()); heap_.empty_heap();